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


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


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。

如果文件名和路徑無效或無法訪問,或者具有正確類型但操作係統不接受的其他參數,則os模塊中的所有函數都會引發OSError。

os.getcwdb()Python中的方法是的字節版本os.getcwd()方法。此方法返回當前工作目錄(CWD)。


用法: os.getcwdb() 

參數:不需要任何參數。

返回類型:此方法返回一個代表當前工作目錄的字節串。

代碼:使用os.getcwdb()方法獲取當前工作目錄
# Python program to explain os.getcwdb() method  
    
# importing os module  
import os 
  
# Get the current working 
# directory (CWD) 
cwd = os.getcwdb() 
  
# Print the current working  
# directory (CWD) 
print("Current working directory:", cwd)
輸出:
Current working directory:b'/home/ihritik'


相關用法


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