我想将我的文本文件保存到某个某个目录但是有一个错误类型'文件'运行代码后没有len()。
这是我的代码,请查看它以找到我的错误。非常感谢你。 (我在Windows 7上使用Python 2.7)
import datetime
import os.path
def timeStamped(fname, fmt='%Y-%m-%d-%H-%M-%S_{fname}'):
return datetime.datetime.now().strftime(fmt).format(fname=fname)
with open(timeStamped('Log.txt'),'w') as outf:
path = 'c:/1/test'
os.path.join(path,outf)