ディレクトリの下のファイルに含まれる文字列を見つけようとしています。次に、そのファイル名とディレクトリを新しいテキストファイルなどに保存するようにします。ディレクトリを通過して文字列を見つけ、結果を出力する場所にたどり着きました。しかし、次のステップについてはわかりません。
助けてください、私はコーディングと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.'