python重命名文件源碼

把寫內容過程當中比較重要的內容作個收藏,下面的內容段是關於python重命名文件的內容。python

import os
cur_path = os.getcwd()
lists = os.listdir( cur_path )
for f in lists:
    if f != 'ren.py':
        print cur_path
        cur_file = cur_path + '\' + f
        new_file = cur_file.replace( '副本', '' )
        os.rename(cur_file, new_file)
相關文章
相關標籤/搜索