Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。 os.path模块是Python中OS模块的子模块,用于通用路径名操作。
os.path.split()
Python中的方法用于将路径名称拆分为一对头部和尾部。在这里,tail是最后的路径名组成部分,而head是导致该名称的所有内容。
例如,考虑以下路径名:
path name = '/home/User/Desktop/file.txt'
在上面的示例中,路径名的“ file.txt”组件为tail,而“ /home /User /Desktop /”为head。tail部分永远不会包含斜杠;如果路径名以斜杠结尾,则tail为空;如果路径名中没有斜杠,head为空。
例如:
path head tail '/home/user/Desktop/file.txt' '/home/user/Desktop/' 'file.txt' '/home/user/Desktop/' '/home/user/Desktop/' {empty} 'file.txt' {empty} 'file.txt'
用法: os.path.split(path)
参数:
path:代表文件系统路径的path-like对象。 path-like对象是表示路径的str或bytes对象。
返回类型:此方法返回一个表示指定路径名的头和尾的元组。
代码1:os.path.split()方法的使用
# Python program to explain os.path.split() method
# importing os module
import os
# path
path = '/home/User/Desktop/file.txt'
# Split the path in
# head and tail pair
head_tail = os.path.split(path)
# print head and tail
# of the specified path
print("Head of '% s:'" % path, head_tail[0])
print("Tail of '% s:'" % path, head_tail[1], "\n")
# path
path = '/home/User/Desktop/'
# Split the path in
# head and tail pair
head_tail = os.path.split(path)
# print head and tail
# of the specified path
print("Head of '% s:'" % path, head_tail[0])
print("Tail of '% s:'" % path, head_tail[1], "\n")
# path
path = 'file.txt'
# Split the path in
# head and tail pair
head_tail = os.path.split(path)
# print head and tail
# of the specified path
print("Head of '% s:'" % path, head_tail[0])
print("Tail of '% s:'" % path, head_tail[1])
输出:
Head of '/home/User/Desktop/file.txt': /home/User/Desktop Tail of '/home/User/Desktop/file.txt': file.txt Head of '/home/User/Desktop/': /home/User/Desktop Tail of '/home/User/Desktop/': Head of 'file.txt': Tail of 'file.txt': file.txt
代码2:如果路径为空
# Python program to explain os.path.split() method
# importing os module
import os
# path
path = ''
# Split the path in
# head and tail pair
head_tail = os.path.split(path)
# print head and tail
# of the specified path
print("Head of '% s':" % path, head_tail[0])
print("Tail of '% s':" % path, head_tail[1])
# os.path.split() function
# will return empty
# head and tail if
# specified path is empty
输出:
Head of '': Tail of '':
参考: https://docs.python.org/3/library/os.path.html
相关用法
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python object()用法及代码示例
- Python bytes()用法及代码示例
- Python os.times()用法及代码示例
- Python os.chmod用法及代码示例
- Python hash()用法及代码示例
- Python os.ftruncate()用法及代码示例
- Python os.truncate()用法及代码示例
- Python os.fsdecode()用法及代码示例
- Python dict pop()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.path.split() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。