您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關python如何創(chuàng)建文件備份的腳本的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
Python是一種編程語言,內(nèi)置了許多有效的工具,Python幾乎無所不能,該語言通俗易懂、容易入門、功能強大,在許多領域中都有廣泛的應用,例如最熱門的大數(shù)據(jù)分析,人工智能,Web開發(fā)等。
制作文件備份
打開原文件
old_f_name = input(“請輸入備份的文件路徑:”) old_f = open(old_f_name, “r”)
打開新文件
new_f_name = “[復件]” + old_f_name 123.txt -> 123[復件].txt 123 + “[復件]” + .txt index = old_f_name.rfind(“.”) # 獲取.對應的后綴 if index >= 0: # 如果有后綴 new_f_name = old_f_name[:index] + “[復件]” + old_f_name[index:] else: # 如果沒有后綴 new_f_name = old_f_name + “[復件]” new_f = open(new_f_name, “w”)
讀取原文件內(nèi)容
content = old_f.read()
寫入到新文件中
new_f.write(content)
關閉原文件
old_f.close()
關閉新文件
new_f.close()
補充:下面看下python文件備份腳本
import os import time source = ['D:\\MyDrivers\hotfix'] #這里可以用自然字符串表示r',因為windows下的分隔符 與python的有沖突,所以需要轉(zhuǎn)義字符\ # 2. 備份文件到目標路徑 target_dir = 'F:\\DMDownLoad\\' #這里的末尾一定不要丟分隔符,否者創(chuàng)建的文件會在F:目錄下, 而不會在DMDownload目錄下 # 3. The files are backed up into a zip file. # 4. The current day is the name of the subdirectory in the main directory today = target_dir + time.strftime('%Y%m%d') #time.strftime表示對當前時間的調(diào)用,括號內(nèi)為參數(shù)設定 # The current time is the name of the zip archive now = time.strftime('%H%M%S') # Take a comment from the user to create the name of the zip file comment = raw_input('Enter a comment -->') if len(comment)==0: target = today+os.sep+now+'.zip' #os.sep表示目錄符號,windows下是\\,linux下是/,mac下是:,這里為了保證移植性, 所以os.sep會根據(jù)系統(tǒng)給出分隔符 else: target = today+os.sep+now+'_'+\ comment.replace(' ','_')+'.zip' # Notice the backslash! # Create the subdirectory if it isn't already there if not os.path.exists(today): os.mkdir(today) # make directory print('Successfully created directory', today) # 5. 用winrar的rar命令壓縮文件,但首先要安裝有winrar且設置winrar到環(huán)境變量的路徑path中 zip_command = "rar a %s %s" %(target,''.join(source)) #這行命令之前的所有target 、target_dir、today這些都是字符串,只有在 這個命令和os.makedir中才是真正的表示路徑 # Run the backup #設置winrar到path環(huán)境中,這里已經(jīng)手動添加了,如果沒有去掉#號 #os.system('set Path=%Path%;C:\Program Files\WinRAR') if os.system(zip_command)==0: print'Successful backup to', target else: print'Backup FAILED'
感謝各位的閱讀!關于“python如何創(chuàng)建文件備份的腳本”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。