Python WindowsError:[错误3]系统在尝试重命名时找不到指定的文件

时间:2012-02-09 23:00:57

标签: python

我无法弄清楚出了什么问题。我之前使用过重命名没有任何问题,也找不到其他类似问题的解决方案。

import os
import random

directory = "C:\\whatever"
string = ""
alphabet = "abcdefghijklmnopqrstuvwxyz"


listDir = os.listdir(directory)

for item in listDir:
    path = os.path.join(directory, item)

    for x in random.sample(alphabet, random.randint(5,15)):
        string += x

    string += path[-4:] #adds file extension

    os.rename(path, string)
    string= ""

2 个答案:

答案 0 :(得分:2)

如果要保存回同一目录,则需要添加“string”变量的路径。目前它只是创建一个文件名,os.rename需要一个路径。

for item in listDir:
    path = os.path.join(directory, item)

    for x in random.sample(alphabet, random.randint(5,15)):
        string += x

    string += path[-4:] #adds file extension
    string = os.path.join(directory,string)

    os.rename(path, string)
    string= ""

答案 1 :(得分:2)

您的代码中有一些奇怪的东西。例如,您的文件源是完整路径,但您重命名的目标只是一个文件名,因此文件将出现在工作目录中 - 这可能不是您想要的。

您无法保护两个随机生成的文件名相同,因此您可以通过这种方式销毁某些数据。

试试这个,这可以帮助您发现任何问题。这只会重命名文件,并跳过子目录。

import os
import random
import string

directory = "C:\\whatever"
alphabet = string.ascii_lowercase

for item in os.listdir(directory):
  old_fn = os.path.join(directory, item)
  new_fn = ''.join(random.sample(alphabet, random.randint(5,15)))
  new_fn += os.path.splitext(old_fn)[1] #adds file extension
  if os.path.isfile(old_fn) and not os.path.exists(new_fn):
    os.rename(path, os.path.join(directory, new_fn))
  else:
    print 'error renaming {} -> {}'.format(old_fn, new_fn)