我正在尝试遍历目录。以下是代码:
file_list = []
os.chdir(self.config.Root_Directory_Path())
for root, dirs, files in os.walk("."):
file_list.extend( join(root,f) for f in files )
file_sorted = sorted(file_list)
f = open(self.config.Client_Local_Status(),'wb')
for file in file_sorted:
print(file + "|" + str(os.path.getmtime(file)) + "\n")
f.close()
首先,我遍历树,然后对其进行排序然后打印。但是在遍历时我得到了以下错误。我非常确定该文件存在,但无法找出错误的原因。请帮助我找出错误的原因并解决它的问题。
以下是输出。
输出:
.\Drivers\Intel Drivers\Applications\Software\Applications\Wave_Embassy_Trust_Suite\EMBASSY Security Center\program files\Wave Systems Corp\EMBASSY Security Center\plugins\cpm.scp\webinterface\ru\js\HelpMessages.js|1229488128.0
.\Drivers\Intel Drivers\Applications\Software\Applications\Wave_Embassy_Trust_Suite\EMBASSY Security Center\program files\Wave Systems Corp\EMBASSY Security Center\plugins\cpm.scp\webinterface\ru\js\Strings.js|1229488128.0
成功打印大量文件名后,代码将失败,如下所示:
错误:
Traceback (most recent call last):
File "C:\SyncClientRK\SyncClientRK.py", line 183, in <module>
SyncClientRK()
File "C:\SyncClientRK\SyncClientRK.py", line 17, in __init__
self.getStatus()
File "C:\SyncClientRK\SyncClientRK.py", line 38, in getStatus
self.generateLocalStatus()
File "C:\SyncClientRK\SyncClientRK.py", line 53, in generateLocalStatus
print(file + "|" + str(os.path.getmtime(file)) + "\n")
File "C:\Python33\lib\genericpath.py", line 54, in getmtime
return os.stat(filename).st_mtime
FileNotFoundError: [WinError 3] The system cannot find the path specified: '.\\Drivers\\Intel Drivers\\Applications\\Software\\Applications\\Wave_Embassy_Trust_Suite\\EMBASSY Security Center\\program files\\Wave Systems Corp\\EMBASSY Security Center\\plugins\\cpm.scp\\webinterface\\zh-CHS\\AccessingToolkit.htm'
请注意,文件是在循环中获取并打印的,但os.path.getmtime会抛出一个无法找到的错误。无法理解为什么以及如何解决这个问题。
答案 0 :(得分:4)
这是一个220个字符长的文件名,从本地目录开始。假设本地目录的路径长度超过40个字符,那么您将使用超过260个字符的旧Windows路径限制。
并非所有在Windows中处理文件的方式都有此限制,但这可能是这里的问题。如果列表中的文件名更长,那么这显然不是问题,但这就是我首先要研究的内容。
另请参阅:http://msdn.microsoft.com/en-us/library/aa365247%28v=vs.85%29.aspx#maxpath
答案 1 :(得分:1)
文件名中的奇怪字符可能吗?显然os.walk
会返回以后无法访问的内容;这应该不会发生,但确实如此。必须是古怪的东西,可能与Windows文件系统,文件名处理等有关。当名称不存在时打印,使用repr(file_name)
,看看你是否能在里面找到奇怪的字符。更有可能是其他东西在摆弄,但这是我最好的猜测。