使用Python 重新命名目錄中的多個檔案
要使用Python 重新命名目錄中的多個文件,請考慮使用os .rename(src , dst) 功能,方便重新命名或移動檔案和目錄。以下是一個範例程式碼片段:
<code class="python">import os # Iterate through the files in the directory for filename in os.listdir("."): # Check if the filename starts with "cheese_" if filename.startswith("cheese_"): # Rename the file by removing "cheese_" os.rename(filename, filename[7:])</code>
在此範例程式碼中,os.listdir(".") 會擷取目前目錄中的檔案和目錄清單。然後,程式碼遍歷每個檔案名稱並檢查它是否以“cheese_”開頭。如果是這樣,程式碼會使用 os.rename(filename, filename[7:]) 更改檔案名稱以刪除「cheese_」。
透過實作此方法,您可以根據需要有效地重新命名目錄中的多個檔案按照您指定的命名約定。
以上是如何使用Python重命名目錄中的多個檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!