python当中如何来获取文件路径
摘要:
在python当中,想要获取文件夹中的各个文件的绝对路径,可以使用下面方法。 方式一: 通过os.walk def walkFile(file): for root, dirs, files in os.walk(file): # root 表示当前正在访问的文件夹路径 # dirs 表示该文件夹下 阅读全文
posted @ 2022-10-19 19:15 一先生94 阅读(5072) 评论(0) 推荐(0) 编辑