我想创建一个 python 脚本来做 3 件事:
截至目前的代码:
import os, time
from os.path import walk
mydictionary = {"</i>":"</em>"}
for (path, dirs, files) in os.walk(raw_input('Copy and Paste Course Directory Here: ')):
for f in files:
if f.endswith('.html'):
filepath = os.path.join(path,f)
s = open(filepath).read()
for k, v in mydictionary.iteritems(): terms for a dictionary file and replace
s = s.replace(k, v)
f = open(filepath, 'w')
f.write(s)
f.close()
现在我有第 1 部分和第 3 部分,我只需要第 2 部分。
对于第 2 部分,尽管我需要确认用户将指定的目录中仅存在 html 文件,否则脚本将提示用户输入正确的文件夹目录(其中将包含 html 文件)
谢谢