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'
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python Decimal max()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python sympy.det()用法及代码示例
- Python Decimal min()用法及代码示例
- Python os.readlink()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.sendfile()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.getcwdb() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。