我想将一个文件复制到一个新目录,然后使用datetime :: Python重命名它

时间:2013-05-29 01:23:21

标签: python datetime rename

所以我的标题是这样说的,但是在移动中寻找帮助然后用日期时间重命名它并没有像我希望的那样简单。这是迄今为止的代码:

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')

1 个答案:

答案 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'