我想遍历我计算机上 L: 驱动器中名为 11109 的文件夹中的多个文件。这是我的脚本:
for filename in os.listdir('L:\11109'):
print(filename.split('-')[1])
但是错误消息返回为:
File "L:/OMIZ/rando.py", line 12, in <module>
for filename in os.listdir('L:\11109'):
FileNotFoundError: [WinError 3] The system cannot find the path specified:
'L:I09'
它读取 L:\ 11109 很好,但错误消息说指定的路径是 L:I09?