檔案的備份

2021-09-06 16:29:15 字數 580 閱讀 9032

01檔案備份系統

需求:輸入檔案的名字,然後程式自動完成對檔案進行備份

oldfilename = input(「請輸入要拷貝的檔案名字:」)

oldfile = open(oldfilename,『r』)

#如果開啟檔案

if oldfile:

fileflagnum = oldfilename.rfind(』.』)

if fileflagnum > 0:

fileflag = oldfilename[fileflagnum:]

#組織新的檔案名字

newfilename = oldfilename[:fileflagnum] + 『[復件]』 + fileflag

newfile = open(newfilename, 『w』)

#把舊檔案中的資料,一行一行的進行複製到新檔案中

for linecontent in oldfile.readlines():

newfile.write(linecontent)

oldfile.close()

newfile.close()

控制檔案的備份

備份控制檔案建立指令碼 alter database 的這種備份一定要要歸檔模式下 alter database backup controlfile to trace as e control 備份二進位制的檔案 alter database backup controlfile to e con...

檔案的自動備份

define crt secure no warnings include include define strlen 255 int main char ch 0 讀取.txt中的檔案到.bak中 while ch getc fp1 eof 在.bak檔案中輸入。while ch getchar ...

Python 備份檔案,以及備份大檔案

今天分享乙個很有用的小 就是關於檔案的備份 import os 匯入os模組 ori file name r e python mayday.輸入檔案路徑 if os.path.isfile ori file name 判斷該路徑的是否是檔案 擷取檔名,重組檔名 seek num ori file ...