91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

使用python怎么定時復制遠程文件夾中的所有文件

發布時間:2021-06-16 17:48:50 來源:億速云 閱讀:371 作者:Leah 欄目:開發技術

使用python怎么定時復制遠程文件夾中的所有文件,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

具體內容如下

import os, shutil, sys
import threading
import configparser
import datetime
 
 
#復制文件
def remote_copy(src_path, dst_path):
 
 
start_time = datetime.datetime.now()
print(start_time, " 開始復制……")
bCopy = False;
try:
# 獲取源文件夾中的所有文件及文件夾
files = os.listdir(src_path)
for file in files:
#生成絕對路徑
src_file = os.path.join(src_path,file)
# 判斷是否為文件
if os.path.isfile(src_file) and (os.path.getsize(src_file) < file_size) :
 
dst_file = os.path.join(dst_path,file)
if not os.path.exists(dst_file):
bCopy = True
shutil.copyfile(src_file, dst_file)
'''
copy_cmd = 'xcopy /D %s %s'%(src_file,dst_file)
os.popen(copy_cmd)
'''
print(src_file, ' => ', dst_file, 'copy done!')
#else:
# print(dst_file, "已存在!")
 
 
except Exception as e:
print("無法發現文件,請檢查網絡連接!")
os.system('pause')
sys.exit()
 
 
else:
if not bCopy:
print("未發現新文件……")
end_time = datetime.datetime.now()
'''
time = span - (end_time - start_time).seconds
print(end_time, " 本次執行完畢,等待", time, "秒……")'''
 
 
print(end_time, " 本次執行完畢,等待", span, "秒……")
 

#定時復制
def timer_copy(src_path, dst_path):
remote_copy(src_path, dst_path)
 
 
global timer
timer = threading.Timer(span, timer_copy, [src_path, dst_path])
timer.start()
 

 
# 程序入口
if __name__ == "__main__":
 
 
#讀取配置文件
config = configparser.ConfigParser()
config.read("config.ini") 
src_path = config.get('path', 'srcPath')
dst_path = config.get('path', 'dstPath')
global span
span = config.getint('run', 'timeSpan')
global file_size
file_size = config.getint('run', 'fileSize')
 
 
# 目的路徑不存在則建立路徑
if not os.path.exists(dst_path):
os.makedirs(dst_path)
 
 
print("配置文件為 :config.ini")
print("執行間隔為 :", span)
print("文件限制為 :", file_size)
print("輸入文件夾為:", src_path)
print("輸出文件夾為:", dst_path)
 
 
inp = input("是否繼續(y/n):")
if inp == 'y' or inp == 'Y':
 
timer = threading.Timer(1, timer_copy, [src_path, dst_path])
timer.start()
 
 
#測試
#remote_copy(src_path, dst_path)
else:
sys.exit()

配置文件config.ini

[run]
timeSpan=20000
fileSize=5000
[path]
srcPath=\\192.168.0.108\xxxx\
dstPath=f:\downloads\

看完上述內容,你們掌握使用python怎么定時復制遠程文件夾中的所有文件的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

宁晋县| 乐东| 宁陕县| 虞城县| 桐梓县| 凭祥市| 唐河县| 青神县| 金川县| 讷河市| 辽宁省| 遵义县| 巴林右旗| 乌鲁木齐县| 进贤县| 瓮安县| 海口市| 巍山| 和硕县| 淳安县| 合水县| 湖南省| 湄潭县| 获嘉县| 越西县| 县级市| 平果县| 怀集县| 甘谷县| 峨眉山市| 任丘市| 皋兰县| 米脂县| 四川省| 卢氏县| 沂源县| 达州市| 南陵县| 峨边| 博罗县| 阿克苏市|