Python:递归移动/备份超过x天的文件夹。错误183

时间:2014-12-08 11:55:51

标签: python backup move errno

我正在编写一个脚本来备份X天以前的文件夹到另一个目的地 我一直收到错误183'访问被拒绝'

我做错了什么?

import os
import time


xdays = 21
path = 'c:\\test'
new = 'c:\\test_test'
now = time.time()

for root, dirs, files in os.walk(path):
  for name in dirs:
    dirname = os.path.join(root, name)
    if os.stat(dirname).st_mtime < now - (xdays * 86400):
      os.rename(dirname, new)
  break

0 个答案:

没有答案