如何为Python“ os.scandir()”编写正确的路径?

时间:2019-04-15 18:03:53

标签: python windows path operating-system

我想制作一个程序来检查文件是否同时存在于2个不同的目录中。

我想出了如何访问PC目录,但是在SD卡目录路径上遇到了麻烦。


import os

Phonebasepath = '//This PC/Phone name/SD card/Music'
with os.scandir(Phonebasepath) as entries:
    for entry in entries:
        if entry.is_file():
            print(entry.name)

此代码应打印字典中的所有文件,但出现如下错误: [WinError 53]找不到网络路径:“ //此PC /电话名称/ SD卡/音乐”

为了安全起见,我更改了一些目录名称。

0 个答案:

没有答案