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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。