在此問題中,使用者尋求使用 Python 重新命名目錄中多個檔案的解決方案。具體要求是從檔案名稱中刪除“CHEESE_”,只留下“CHEESE_TYPE”。
為了實現這一點,Python 提供了 os.rename() 函數來重新命名或移動檔案或目錄。此函數有兩個參數:
os.rename(src, dst)
其中 src 是目前檔名,dst 是新檔名。
在使用者提供的範例中,Python 腳本循環遍歷檔案使用os.listdir(".") 在目前目錄中,並使用以下程式碼重命名以「cheese_」開頭的所有檔案:
<code class="python">import os for filename in os.listdir("."): if filename.startswith("cheese_"): os.rename(filename, filename[7:])</code>
此程式碼成功從檔案名稱中刪除“CHEESE_”,從而導致以下輸出:
$ ls cheese_cheese_type.bar cheese_cheese_type.foo $ python >>> import os >>> for filename in os.listdir("."): ... if filename.startswith("cheese_"): ... os.rename(filename, filename[7:]) ... >>> $ ls cheese_type.bar cheese_type.foo
以上是如何使用Python重命名目錄中的多個檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!