当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.getcwd()用法及代码示例


操作系统模块Python中的Windows提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。
如果文件名和路径无效或无法访问,或者具有正确类型但操作系统不接受的其他参数,则os模块中的所有函数都会引发OSError。
os.getcwd()方法告诉我们当前工作目录(CWD)的位置。

用法: os.getcwd()

参数:不需要任何参数。


返回值:此方法返回代表当前工作目录的字符串。

示例1:

使用os.getcwd()获取当前工作目录的方法

# Python program to explain os.getcwd() method  
        
# importing os module  
import os  
    
# Get the current working  
# directory (CWD)  
cwd = os.getcwd()  
    
# Print the current working   
# directory (CWD)  
print("Current working directory:", cwd) 
输出:
Current working directory: C:\Users\Rajnish\AppData\Local\Programs\Python\Python37

示例2:
使用os.getcwd()获取当前根目录的GeeksforGeeks工作目录的方法

# Python program to explain os.getcwd() method  
        
# importing os module  
import os  
    
# Get the current working  
# directory (CWD)  
cwd = os.getcwd()  
    
# Print the current working   
# directory (CWD)  
# which is root in this case 
print("Current working directory:", cwd) 
输出:
Current working directory: /


相关用法


注:本文由纯净天空筛选整理自Rajnis09大神的英文原创作品 Python | os.getcwd() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。