import os
'''
将文件名写入txt、csv、xlsx
'''
file_path = r"E:\PythonProject\phonetest\phone"
#判断文件保存路径是否存在,不存在就创建保存路径
if os.path.exists(file_path):
t = open("fineName1.xlsx", 'w')
for root, dirs, files in os.walk(file_path):
for file in files:
#获取文件路径
print(os.path.join(root, file))
upload_file = os.path.join(root, file)
t.write(upload_file + "\n")
t.close()
else:
print("此路径不存在....")
python将文件名写入txt、csv、xlsx
最新推荐文章于 2023-03-30 12:30:00 发布