亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用python怎么剪切移動文件

發布時間:2021-06-01 17:29:03 來源:億速云 閱讀:219 作者:Leah 欄目:開發技術

本篇文章為大家展示了使用python怎么剪切移動文件,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

移動復制文件通過os.rename方法,先進行文件是否存在判斷,如需更加復雜相同文件判斷可以根據文件屬性進行判斷,此處只使用同名檢查,并刪除已存在文件,來實現覆蓋。

import os
path="C:/Users/kele/Desktop/testfloader"
targetpath="C:/Users/kele/Desktop/targetfloader"
def scan_files(directory,postfix=None):
  files_list=[]
  path=unicode(directory,'utf-8')
  for root, sub_dirs, files in os.walk(path):
    for special_file in files:
      if postfix:
        if special_file.endswith(postfix):
          cutmove(root,special_file)
      else:
        cutmove(root,special_file)
def cutmove(root,special_file):
  if os.path.isfile(targetpath+"/"+special_file):
    os.remove(targetpath+"/"+special_file)
  os.rename(root+"/"+special_file,targetpath+"/"+special_file)
def runmian():
  if not os.path.isdir(targetpath):
    os.mkdir(targetpath)
  scan_files(path,".mobi")
runmian()

上述內容就是使用python怎么剪切移動文件,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

岢岚县| 乌鲁木齐县| 金川县| 航空| 龙陵县| 崇州市| 嘉祥县| 景德镇市| 沙洋县| 南和县| 庐江县| 错那县| 尚志市| 东乡县| 大英县| 河源市| 贵定县| 福贡县| 昆明市| 新龙县| 华宁县| 龙岩市| 都昌县| 福州市| 望谟县| 浦县| 新源县| 琼结县| 卢氏县| 开江县| 诸城市| 上饶市| 平罗县| 克东县| 岗巴县| 德安县| 北碚区| 墨玉县| 北票市| 漳浦县| 沙坪坝区|