python中如何获取文件列表

# coding: utf-8
import os 
FindPath="E:/PythonExample"
filenames=os.listdir(FindPath) 
for name in filenames:
    filePath=os.path.join(FindPath,name)
    print(filePath)

留下评论

鄂ICP备13000209号-1

鄂公网安备 42050602000277号