📜  Python| os.getcwd() 方法

📅  最后修改于: 2022-05-13 01:55:22.378000             🧑  作者: Mango

Python| os.getcwd() 方法

Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
os 模块中的所有函数在文件名和路径无效或不可访问的情况下,或具有正确类型但操作系统不接受的其他参数的情况下引发OSError
os.getcwd()方法告诉我们当前工作目录(CWD)的位置。

示例 #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 的当前工作目录,即root

# 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: /