Python os.getcwdb() - 返回当前工作目录

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'

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程