Python3 os.renames()方法

2019-10-16 23:09:13
renames() 方法將遞回的目錄或檔案重新命名功能。它同樣函式 os.rename(), 但它也將檔案移動到一個目錄,或目錄的整個樹,即不存在。

語法

以下是 rename() 方法的語法:
os.renames(old, new)

引數

  • old -- 這是要重新命名的檔案或目錄的實際名稱

  • new -- 這是在檔案或目錄的新名稱。它甚至可以包括一個檔案到一個目錄,或目錄的整個樹,即不存在。

返回值

此方法不返回任何值。

範例

下面的範例說明 rename() 方法的使用。
# !/usr/bin/python3

import os, sys
os.chdir("d:\\tmp")
print ("Current directory is: %s" %os.getcwd())

# listing directories
print ("The dir is: %s"%os.listdir(os.getcwd()))

# renaming file "aa1.txt"
os.renames("foo.txt","newdir/foonew.txt")

print ("Successfully renamed.")

# listing directories after renaming and moving "foo.txt"
print ("The dir is: %s" %os.listdir(os.getcwd()))
os.chdir("newdir")
print ("The dir is: %s" %os.listdir(os.getcwd()))
當我們執行上面的程式,它會產生以下結果:
Current directory is: d:\tmp
The dir is: ['Applicationdocs.docx', 'book.zip', 'foo.txt', 'Java Multiple Inheritance.html', 'Java Multiple Inheritance_files', 'java.ppt', 'python2']
Successfully renamed.
The dir is: ['Applicationdocs.docx', 'book.zip', 'Java Multiple Inheritance.html', 'Java Multiple Inheritance_files', 'java.ppt', 'newdir', 'python2']
這裡檔案 foo.txt 不可見,因為它已經被移動到新的目錄,並更名為 foonew.txt。目錄newdir 及其內容如下:
The dir is: ['foonew.txt']