我有大量的html和css文件(可能会出现类型)。
我已经使用glob编写了一个查找和替换脚本,该脚本在1种文件类型上运行良好..
我无法迭代多种文件类型。
************ ***********
UPDATE此代码完美无缺!谢谢你们
files_extensions = ('.html', '.css')
find_str = 'http'
replace_str = 'https'
def find_and_replace(find, replace):
for files in files_extensions:
globby = (glob.glob('**/*' + files, recursive=True))
print(globby)
for file in globby:
f = open(file, 'r', encoding='utf-8')
file_data = f.read()
f.close()
new_data = file_data.replace(find, replace)
f = open(file, 'w', encoding='utf-8')
f.write(new_data)
f.close()
find_and_replace(find_str, replace_str)
答案 0 :(得分:1)
好吧,我会给你一个如何抓取多种类型的例子,我想你可以在你的代码中使用这个例子,但如果你遇到麻烦,请问它!
files_extension = ('*.html', '*.css')
all_files_with_extension = list()
for files in files_extension:
all_files_with_extension.extend(glob.glob(files))
print all_files_with_extension