Python 是一種常用的高級(jí)編程語(yǔ)言,能夠輕松地進(jìn)行文件和目錄處理等操作。其中,移動(dòng)目錄是一個(gè)常見(jiàn)的操作。以下是在 Python 中移動(dòng)目錄的方法。
import os # 獲取當(dāng)前工作目錄 current_directory = os.getcwd() print("當(dāng)前工作目錄: ", current_directory) # 要移動(dòng)到的目錄 destination_directory = "path/to/destination" # 移動(dòng)到目標(biāo)目錄 os.chdir(destination_directory) # 確認(rèn)是否移動(dòng)成功 updated_directory = os.getcwd() print("更新后的工作目錄: ", updated_directory)
代碼中,我們首先使用 `os` 模塊中的 `getcwd()` 方法獲取了當(dāng)前的工作目錄,然后將要移動(dòng)到的目標(biāo)目錄指定為 `destination_directory`。接著,使用 `os.chdir()` 方法移動(dòng)到目標(biāo)目錄。最后,使用 `os.getcwd()` 方法檢查是否成功移動(dòng)。如果一切順利,`updated_directory` 將顯示更新后的工作目錄。