我想通过从包含多个子目录的文件夹中仅给出名称(不是完整路径)来读取特定文本文件,以便比较和合并文本文件。
如何使用熊猫读取特定文件?
答案 0 :(得分:0)
您可以使用walk搜索文件,然后使用它
import os
name = "Name of your file"
root= './' #Assuming you will search from current directory, you can give any path = []
for dirpath, subdirs, files in os.walk(root):
for x in files:
if x==name:
path.append(os.path.join(dirpath, x))
print(path) #do your operation here