python對檔案及檔案夾的一些操作

來源:互聯網
上載者:User

python中對檔案、檔案夾的操作需要涉及到os模組和shutil模組。

建立檔案:
1) os.mknod("test.txt") 建立空檔案
2) open("test.txt",w)           直接開啟一個檔案,如果檔案不存在則建立檔案

建立目錄:
os.mkdir("file")                   建立目錄

複製檔案:
shutil.copyfile("oldfile","newfile")       oldfile和newfile都只能是檔案
shutil.copy("oldfile","newfile")            oldfile只能是檔案夾,newfile可以是檔案,也可以是目標目錄

複製檔案夾:
shutil.copytree("olddir","newdir")        olddir和newdir都只能是目錄,且newdir必須不存在

重新命名檔案(目錄)
os.rename("oldname","newname")       檔案或目錄都是使用這條命令

移動檔案(目錄)
shutil.move("oldpos","newpos")   

刪除檔案
os.remove("file")

刪除目錄
os.rmdir("dir") 只能刪除空目錄
shutil.rmtree("dir")    空目錄、有內容的目錄都可以刪

轉換目錄
os.chdir("path")    換路徑

判斷目標
os.path.exists("goal")    判斷目標是否存在
os.path.isdir("goal")     判斷目標是否目錄
os.path.isfile("goal")    判斷目標是否檔案   

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.