在當前目錄以及當前目錄的所有子目錄下查找文件名包含指定字元串的文件,並列印出相對路徑: ...
在當前目錄以及當前目錄的所有子目錄下查找文件名包含指定字元串的文件,並列印出相對路徑:
import os
testfiles = []
testfilepaths = []
L = len(os.path.abspath('.'))
def searchfile(path):
for item in os.listdir(path):
if os.path.isdir(os.path.join(path, item)):
searchfile(os.path.join(path, item))
else:
if 'test' in item:
print(item, path[L:])
searchfile(os.path.abspath('.'))