我有一个奇怪的问题。我既不能重命名特定文件,也不能删除它们。我得到了FileNotFoundError。
以前曾提出过类似的问题。这个问题的解决方案是使用完整路径而不仅仅是文件名。
我的脚本在仅使用文件名之前工作,但使用不同的文件我得到此错误,即使使用完整路径。
看来,文件名导致错误,但我无法解决。
import os
cwd = os.getcwd()
file = "003de5664668f009cbaa7944fe188ee1_recursion1.c_2016-04-21-21-06-11_9bacb48fecd32b8cb99238721e7e27a3."
change = "student_1_recursion1.c_2016-04-21-21-06-11_9bacb48fecd32b8cb99238721e7e27a3."
oldname = os.path.join(cwd,file)
newname = os.path.join(cwd,change)
print(file in os.listdir())
print(os.path.isfile(file))
os.rename(oldname, newname)
我得到以下输出:
True
False
Traceback (most recent call last):
File "C:\Users\X\Desktop\code\sub\test.py", line 13, in <module>
os.rename(oldname, newname)
FileNotFoundError: [WinError 2] Das System kann die angegebene Datei nicht finden: 'C:\\Users\\X\\Desktop\\code\\sub\\003de5664668f009cbaa7944fe188ee1_recursion1.c_2016-04-21-21-06-11_9bacb48fecd32b8cb99238721e7e27a3.' -> 'C:\\Users\\X\\Desktop\\code\\sub\\student_1_recursion1.c_2016-04-21-21-06-11_9bacb48fecd32b8cb99238721e7e27a3.'
[Finished in 0.4s with exit code 1]
如果我在文件夹中使用Windows搜索,则此文件存在。 如果我尝试使用完整路径,我也会收到Windows错误,找不到文件。
我还尝试在字符串中附加一个unicode字符串u''+ filename,因为它是由用户建议的。
路径长度< 260,那导致问题的原因是什么?
答案 0 :(得分:1)
这是一个Windows / Python的东西。有时会修剪具有尾随句点的文件名。
如果这是一次性任务,您可以使用两个尾随时段作为解决方法。