为什么pathlib.Path(" C:")会解析到Windows上的工作目录?

时间:2018-02-15 15:38:46

标签: python pathlib

在Windows 7 x64上使用Python 3.6,路径"C:"似乎与Path.resolve()的空路径相同:

'空'路径是当前的工作目录' cwd()

>>> from pathlib import Path
>>> Path().resolve()
WindowsPath('C:/Users/me')
>>> Path(r"").resolve()
WindowsPath('C:/Users/me')
>>> Path.cwd().resolve()
WindowsPath('C:/Users/me')

单个字母被解释为文件夹名称:

>>> Path(r"C").resolve()
WindowsPath('C:/Users/me/C')

完整的驱动器号+冒号+反斜杠指向驱动器根目录:

>>>> Path(r"C:\").resolve()
WindowsPath('C:/')

但忘记反斜杠指向当前的工作目录?

>>>> Path(r"C:").resolve()
WindowsPath('C:/Users/me/C')

我希望它可以将冒号(没有反斜杠)视为常规字符(对Path("te:st")执行此操作),或者忽略它("C"),或将路径视为驱动器根目录("C:\")。但相反,它似乎完全忽略了C.

对于其他驱动器号("A:""X:",...),解析要么无限期挂起(不好!)或要求我将磁盘插入驱动器(这表示它&# 39;不要完全忽略驱动器号。)

1 个答案:

答案 0 :(得分:2)

不是。

至少在pathlib.Path("C:")解析为Windows上的 工作目录的意义上:

C:\Users\bersbers>d:

D:\>python
Python 3.8.1 (tags/v3.8.1:1b293b6, Dec 18 2019, 23:11:46) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from pathlib import Path
>>> Path.cwd().resolve()
WindowsPath('D:/')
>>> Path(r"C:").resolve()
WindowsPath('C:/Users/bersbers')
>>>

如您所见,C:解析C:驱动器上的最后一个活动目录 ,这与Windows使用C:与{{1 }}:

C:\

对此进行比较:

D:\>dir C:\
 Volume in drive C is Windows
 Volume Serial Number is 1234-ABCD

 Directory of C:\

01/17/2020  10:34 AM    <DIR>          Program Files
01/18/2020  12:11 AM    <DIR>          Program Files (x86)
...

这也适用于文件路径:

D:\>dir C:
 Volume in drive C is Windows
 Volume Serial Number is 1234-ABCD

 Directory of C:\Users\bersbers

01/20/2020  11:19 AM    <DIR>          .
01/20/2020  11:19 AM    <DIR>          ..
08/23/2018  10:45 AM    <DIR>          .cache
11/27/2019  11:26 PM             1,024 .rnd
...

类似地:

D:\>copy C:\.rnd %TEMP%
The system cannot find the file specified.

D:\>copy C:.rnd %TEMP%
        1 file(s) copied.

C:\Users\bersbers>D:

D:\>cd C:
C:\Users\bersbers

D:\>C:

C:\Users\bersbers>

因此,总而言之,C:\Users\bersbers>D: D:\>cd C:\ D:\>C: C:\> 的行为基于长期存在的Windows行为,完全符合您的预期。