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


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


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

Python中的os.chdir()方法用于将当前工作目录更改为指定路径。它仅将单个参数用作新目录路径。

用法: os.chdir(path)

参数:
path:要更改为新目录路径的目录的完整路径。

返回:不返回任何值

代码1:使用chdir()更改目录

# Python3 program to change the  
# directory of file using os.chdir() method 
  
# import os library 
import os 
  
# change the current directory 
# to specified directory 
os.chdir(r"C:\Users\Gfg\Desktop\geeks") 
  
print("Directory changed")

输出:

Directory changed


代码2:os.getcwd()的使用
要知道文件的当前工作目录,可以使用getcwd()方法。更改路径后,可以使用此方法验证当前工作目录的路径。

# import os module 
import os 
  
# change the current working directory  
# to specified path 
os.chdir('c:\\gfg_dir') 
  
# varify the path using getcwd() 
cwd = os.getcwd() 
  
# print the current directory 
print("Current working directory is:", cwd)

输出:

Current working directory is: c:\\gfg_dir


代码3:更改目录时处理错误

# importing all necessary libraries 
import sys, os 
  
# initial directory 
cwd = os.getcwd() 
  
# some non existing directory 
fd = 'false_dir / temp'
  
# trying to insert to flase directory 
try: 
    os.chdir(fd) 
    print("Inserting inside-", os.getcwd()) 
      
# Caching the exception     
except: 
    print("Something wrong with specified\ 
          directory. Exception- ", sys.exc_info()) 
            
# handling with finally           
finally: 
    print("Restoring the path") 
    os.chdir(cwd) 
    print("Current directory is-", os.getcwd())

输出:

Inserting inside- c:\gfg_dir\gfg
Something wrong with specified directory. Exception- 
Restoring the path
Current directory is- c:\gfg_dir\gfg


相关用法


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