os.rename()中的“系统找不到指定的文件”错误-Python

时间:2019-09-09 13:14:51

标签: python python-3.x windows

我正在编写一个程序,以搜索和移动散布在许多子文件夹中的音乐到单独的文件夹中。

我还尝试将os.rename()更改为shutil.move(),但显然它只是引用相同的内容,而没有用。

代码如下:

for r,d,f in os.walk(current_path):
    for file in f:
        if file.endswith(".mp3") or file.endswith(".flac"):
                os.rename(current_path+'/'+file, desired_path+'/'+file)

但是当我运行此代码时,出现此错误-

  

FileNotFoundError:[WinError 2]系统找不到文件   指定:路径-> 其他路径

但是当我在资源管理器中查找该目录时,该目录就存在了。

谢谢。

0 个答案:

没有答案