我在win系统上工作,我想知道一种方法可以使用可以在cmd行中运行的python脚本来批量编译py文件。我写了一个简单的python代码。
import py_compile, os, glob
dir = 'D:\\FAS\\config'
for f in glob.glob(dir + '\\*.py'):
py_compile.compile(f)
print "Success compile the file: %s" % f
它工作不方便,无法编译文件夹子文件夹中的文件。我希望你的帮助。