py脚本-获取指定目录下所有文件及其路径

-
2024-07-08

这个脚本可以用于获取指定文件夹下所有文件的路径。

不需要安装第三方包。

配合excel使用更佳。

import os.path
import os

def getfilename(path):
    """
    获取文件目录
    :param path:
    :return:
    """
    path=path+"/"
    try:
        list = os.listdir(path)
    except Exception as e:
        return  print("shibai")
    for name in list:
        if("file"==ifFile(name)):
            print(path+"separate" + name)
        else:
            getfilename(path+name)
def ifFile(name):
    if(name.count(".")):
        return "file"
    else:
        return "catalogue"


print(getfilename("E:\工作间\证照-考核\第四批\电子证照归集(1397个)"))

卓央木
凡所有相,皆是虚妄。
公告

岁在甲辰 天下大吉
Copyright © 2024-2024. All Rights Reserved.