今天太晚,先实现一个阶段的小功能,就是获取python运行文件夹下的所有xlsx文件名字与文件个数
在demo文件里面编写代码:
import os
def get_name(file_dir):
newlist=[]#新建一个空列表用于储存文件名字
for files in os.listdir(file_dir):#遍历目录下面所有文件的名字
if files.endswith('.xlsx'):#判断如果是以xlsx结尾的话
newlist.append(files)#就把这个名字加入列表当中
return newlist,len(newlist) #函数get_name返回两个值,一个是包含xlsx的文件列表,另外一个是列表元素个数
path=get_name(os.getcwd())#调用函数,传入参数os.getcwd当前文件运行目录
print(path)
返回结果