Python os.getcwdb()
os模块中的所有函数在文件名和路径无效或不可访问,或其他具有正确类型但操作系统不接受的参数时都会引发OSError。
Python中的os.getcwdb()方法是os.getcwd()方法的字节版本。此方法返回当前工作目录(CWD)。
语法:os.getcwdb()
参数:不需要参数。
返回类型:该方法返回一个代表当前工作目录的字节串。
示例1
使用os.getgroups() 方法
# 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'