Python| os.getcwdb() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
os 模块中的所有函数在文件名和路径无效或不可访问的情况下,或具有正确类型但操作系统不接受的其他参数的情况下引发OSError 。
Python中的 os.getcwdb( os.getcwdb()
方法是os.getcwd()
方法的字节版本。此方法返回当前工作目录 (CWD)。
Syntax: os.getcwdb()
Parameter: No parameter is required.
Return Type: This method returns a bytestring which represents the current working directory.
代码:使用 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'