所以我的标题是这样说的,但是在移动中寻找帮助然后用日期时间重命名它并没有像我希望的那样简单。这是迄今为止的代码:
import os
import shutil
import time
timestr = time.strftime("%Y%m%d-%H%M%S")
srcfile = '/Users/foo/bar/log.html'
dstroot = '/Users/foo/bar/newlogs/'
assert not os.path.isabs(log.html)
dstdir = os.path.join(dstroot, os.path.dirname(log.html))
shutil.copy(log.html, dstdir)
os.rename ('log.html', timestr.'lognew.html')
答案 0 :(得分:1)
需要引用log.html
的所有实例。
assert not os.path.isabs('log.html')
dstdir = os.path.join(dstroot, os.path.dirname('log.html'))
shutil.copy('log.html', dstdir)
(或许您打算在这些地方使用srcfile
变量?)
要连接字符串,请使用+
:
timestr + 'lognew.html'