Python基礎 目錄操作

2021-09-12 02:52:25 字數 412 閱讀 7965

os.mkdir() 建立目錄

shutil.copyfile(『oldfile』,『newfile』) 複製檔案 兩個引數必須是檔案

shutil.copy(『oldfile』,『newfile』) oldfile只能是資料夾,newfile可以是檔案也可以是目標目錄

shutil.copytree(『oldfile』,『newfile』) 複製資料夾 兩個引數必須是目錄且newfile必須不存在

os.rename(『oldname』, 『newname』) 重新命名檔案或目錄

shutil.move(『oldpath』,『newpath』) 移動檔案或目錄

os.rmdir(path) 刪除空目錄

shutil.rmtree() 刪除目錄及其內內容

os.chdir(path)切換路徑

python 進入目錄 Python 目錄操作

注意之前要import os 1 獲得當前路徑 在python中可以使用os.getcwd 函式獲得當前的路徑。其原型如下所示。os.getcwd 該函式不需要傳遞引數,它返回當前的目錄。需要說明的是,當前目錄並不是指指令碼所在的目錄,而是所執行指令碼的目錄。例如,在pythonwin中輸入如下指令...

python 目錄操作

1 獲得當前路徑 在python中可以使用os.getcwd 函式獲得當前的路徑。其原型如下所示。os.getcwd 該函式不需要傳遞引數,它返回當前的目錄。需要說明的是,當前目錄並不是指指令碼所在的目錄,而是所執行指令碼的目錄。例如,在pythonwin中輸入如下指令碼。import os pri...

python 目錄操作

首先,匯入os模組。import os 獲取當前目錄 os.getcwd 建立目錄 os.mkdir 列出目錄下檔案 os.listdir path os.listdir 列出當前目錄。os.listdir 列出根目錄。判斷目錄下子項是檔案還是目錄。for item in os.listdir if...