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
相關用法
- Python os.dup()用法及代碼示例
- Python next()用法及代碼示例
- Python set()用法及代碼示例
- Python object()用法及代碼示例
- Python bytes()用法及代碼示例
- Python os.times()用法及代碼示例
- Python os.chmod用法及代碼示例
- Python hash()用法及代碼示例
- Python os.ftruncate()用法及代碼示例
- Python os.truncate()用法及代碼示例
- Python os.fsdecode()用法及代碼示例
- Python dict pop()用法及代碼示例
- Python os.abort()用法及代碼示例
- Python os.WEXITSTATUS()用法及代碼示例
注:本文由純淨天空篩選整理自Shivam_k大神的英文原創作品 Python | os.chdir() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。