# coding: utf-8
import os
import shutil
import re
if __name__ == "__main__":
src = r"C:\Users\Windows11\Desktop\test" # 原資料夾路徑
des = r"C:\Users\Windows11\Desktop\result" # 目標資料夾路徑
# 檔案篩選條件
vpatch = input("請輸入虛擬路徑:")
vpatch = re.split('[,;]', vpatch)
for file in vpatch:
# 遍歷原資料夾中的檔案
mark = file + '.txt'
full_file_name = os.path.join(src, mark) # 把檔案的完整路徑得到
print("要被移動的全檔案路徑全名:", full_file_name)
if os.path.isfile(full_file_name): # 用於判斷某一物件(需提供絕對路徑)是否為檔案
new_file_name = shutil.move(full_file_name, des) # shutil.copy函式放入原檔案的路徑檔案全名 然後放入目標資料夾
print("移動後的全檔案路徑全名:", new_file_name)
python之批次移動檔案
相關文章
- python——批次移動檔案Python
- python移動檔案指標seekPython指標
- 移動檔案
- python遍歷之批次更改檔名Python
- shell指令碼之批次清空檔案指令碼
- 檔案批次查詢複製匯出,按檔名批次查詢檔案,按檔案內容批次查詢檔案
- 輕鬆玩轉Python檔案操作:移動、刪除Python
- Python自動批次修改檔名稱的方法Python
- SQLServer移動資料檔案SQLServer
- Python讀取大量Excel檔案並跨檔案批次計算平均值PythonExcel
- Python之檔案處理Python
- python之檔案下載Python
- python 基礎之檔案Python
- 7、python之檔案操作Python
- linux批次find查詢檔案並批次替換覆蓋該檔案Linux
- mv 命令 – 移動或改名檔案
- 在 Linux 中如何移動檔案Linux
- md檔案批次轉htmlHTML
- 用Python實現批次掃描域名是否存在指定檔案Python
- Python之合併PDF檔案Python
- 如何用Python批次修改檔名?Python
- 函式:file.move 移動檔案函式
- Linux 中複製和移動檔案Linux
- 橫向無檔案移動--SCshell使用
- 批次做成畫像dummy檔案
- Python批次分割Excel後逐行做差、合併檔案的方法PythonExcel
- Python學習筆記|Python之檔案操作Python筆記
- Python學習筆記|Python之特殊檔案Python筆記
- SPM12之fMRI批次預處理——NII檔案處理
- python檔案查詢之find命令Python
- Python之ini配置檔案詳解Python
- Python之檔案讀寫小練Python
- python學習之讀寫檔案Python
- (十七)Python學習之檔案操作Python
- Python3之檔案操作filePython
- Python自動化測試之獲取配置檔案資訊Python
- css在移動端常遇到的檔案CSS
- 批次檔案重新命名的方法