ディレクトリの下にあるファイルに含まれる文字列を検索しようとしています。次に、ファイル名とディレクトリを新しいテキストファイルなどの下に保存するようにします。 私はディレクトリを通過して文字列を見つけ出し、結果を出力しています。しかし、次のステップの確信。ファイル名とそのディレクトリのパスをPythonを使用してテキストファイルに保存する方法
私は完全にコーディングとPythonに新しいです。
import glob, os
#Open a source as a file and assign it as source
source = open('target.txt').read()
filedirectories = []
#locating the source file and printing the directories.
os.chdir("/Users/a1003584/desktop")
for root, dirs, files in os.walk(".", topdown=True):
for name in files:
print(os.path.join(root, name))
if source in open(os.path.join(root, name)).read():
print 'treasure found.'
あなたは(https://mail.python.org/mailman/listinfo/tutor)は、より適切な[Pythonの家庭教師リスト]を見つけるかもしれないcsvファイルに出力を書き込む必要がありますこのような質問のために。 –