程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python - file backup script

編輯:Python

Source code is as follows

def copyFile():
# Receive the file name entered by the user
old_File=input(' Please enter the file to back up :')
# Construct a new file name , Add the backup suffix
File=old_File.split('.')
new_File=File[0]+'_ Backup .'+File[1]
try:
# At the same time, open the files to be backed up , A new file
with open(old_File,'r',encoding='utf-8') as Old_f,open(new_File,'a',encoding='utf-8') as New_f:
while True:
# Read once 1024 character , Prevent memory leaks
Content=Old_f.read(1024)
New_f.write(Content)
# When the read content character length is less than 1024 Description has been read
if len(Content)<1024:
break
except Exception as msg:
print(msg)
copyFile()

 

 


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved