今天太晚,先實現一個階段的小功能,就是獲取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)
返回結果