當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python os.path.dirname()用法及代碼示例


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。 os.path模塊是Python中OS模塊的子模塊,用於通用路徑名操作。

os.path.dirname()Python中的方法用於從指定路徑獲取目錄名稱。

用法: os.path.dirname(path)

參數:
path:代表文件係統路徑的path-like對象。

返回類型:此方法返回一個字符串值,該字符串值表示指定路徑中的目錄名稱。

代碼:用於os.path.dirname()方法

# Python program to explain os.path.dirname() method  
    
# importing os.path module  
import os.path 
  
# Path 
path = '/home/User/Documents'
  
# Get the directory name   
# from the specified path 
dirname = os.path.dirname(path) 
  
# Print the directory name   
print(dirname) 
  
  
# Path 
path = '/home/User/Documents/file.txt'
  
# Get the directory name   
# from the specified path 
dirname = os.path.dirname(path) 
  
# Print the directory name   
print(dirname) 
  
  
# Path 
path = 'file.txt'
  
# Get the directory name   
# from the specified path 
dirname = os.path.dirname(path) 
  
# Print the directory name   
print(dirname) 
  
# In the above specified path  
# does not contains any 
# directory so,  
# It will print Nothing  
輸出:
/home/User
/home/User/Documents

參考: https://docs.python.org/3/library/os.path.html



相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.path.dirname() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。