用法:
os.path.splitdrive(path)
将路径名
path
拆分为一对(drive, tail)
,其中drive
是安装点或空字符串。在不使用驱动器规范的系统上,drive
将始终为空字符串。在所有情况下,drive + tail
将与path
相同。在 Windows 上,将路径名拆分为驱动器/UNC 共享点和相对路径。
如果路径包含驱动器号,驱动器将包含冒号之前的所有内容:
>>> splitdrive("c:/dir") ("c:", "/dir")
如果路径包含 UNC 路径,驱动器将包含主机名和共享,最多但不包括第四个分隔符:
>>> splitdrive("//host/computer/dir") ("//host/computer", "/dir")
在 3.6 版中更改:接受一个path-like 对象.
相关用法
- Python os.path.splitdrive()用法及代码示例
- Python os.path.splitext用法及代码示例
- Python os.path.split()用法及代码示例
- Python os.path.splitext()用法及代码示例
- Python os.path.size()用法及代码示例
- Python os.path.sameopenfile()用法及代码示例
- Python os.path.samestat()用法及代码示例
- Python os.path.samefile()用法及代码示例
- Python os.path.normcase()用法及代码示例
- Python os.path.commonpath()用法及代码示例
- Python os.path.expanduser()用法及代码示例
- Python os.path.expandvars()用法及代码示例
- Python os.path.normpath()用法及代码示例
- Python os.path.lexists()用法及代码示例
- Python os.path.getatime()用法及代码示例
- Python os.path.join()用法及代码示例
- Python os.path.commonprefix()用法及代码示例
- Python os.path.relpath()用法及代码示例
- Python os.path.isdir()用法及代码示例
- Python os.path.ismount()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 os.path.splitdrive。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。