时间:2021-05-22
制作文件备份
打开原文件
打开新文件
读取原文件内容
content = old_f.read()
写入到新文件中
new_f.write(content)
关闭原文件
old_f.close()
关闭新文件
new_f.close()
补充:下面看下python文件备份脚本
import osimport timesource = ['D:\\MyDrivers\hotfix'] #这里可以用自然字符串表示r',因为windows下的分隔符与python的有冲突,所以需要转义字符\# 2. 备份文件到目标路径target_dir = 'F:\\DMDownLoad\\' #这里的末尾一定不要丢分隔符,否者创建的文件会在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 directorytoday = target_dir + time.strftime('%Y%m%d') #time.strftime表示对当前时间的调用,括号内为参数设定# The current time is the name of the zip archivenow = time.strftime('%H%M%S')# Take a comment from the user to create the name of the zip filecomment = raw_input('Enter a comment -->')if len(comment)==0: target = today+os.sep+now+'.zip' #os.sep表示目录符号,windows下是\\,linux下是/,mac下是:,这里为了保证移植性,所以os.sep会根据系统给出分隔符else: target = today+os.sep+now+'_'+\ comment.replace(' ','_')+'.zip' # Notice the backslash!# Create the subdirectory if it isn't already thereif not os.path.exists(today): os.mkdir(today) # make directory print('Successfully created directory', today)# 5. 用winrar的rar命令压缩文件,但首先要安装有winrar且设置winrar到环境变量的路径path中zip_command = "rar a %s %s" %(target,''.join(source))#这行命令之前的所有target 、target_dir、today这些都是字符串,只有在这个命令和os.makedir中才是真正的表示路径# Run the backup#设置winrar到path环境中,这里已经手动添加了,如果没有去掉#号#os.system('set Path=%Path%;C:\Program Files\WinRAR')if os.system(zip_command)==0: print'Successful backup to', targetelse: print'Backup FAILED'总结
以上所述是小编给大家介绍的python创建文件备份的脚本,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
实现自动清除日期目录shell脚本实例代码很多时候备份通常会使用到基于日期来创建文件夹,对于这些日期文件夹下面又有很多子文件夹,对于这些日期文件整个移除,通过f
创建脚本文件的方法: 1、在工具栏上单击“新建”,或者在“文件”菜单上单击“新建”。 2、在一个新选项卡中显示创建的文件。默认情况下,所创建文件的类型为脚本
Python的一个备份程序这是一个备份脚本。路径请自行更换。这是一个备份脚本,按照当前日期分目录,以时间作为文件名,并且可以在文件名加入备注信息.以zip方式作
在windows下用python脚本实现文件的备份,参考《AByteofPython3》第十一章(Page59)。#!/usr/bin/python#-*-co
打开cmder1.移动到D盘输入命令:D:2.创建文件夹λmkdirmyApp3.创建python自带的虚拟环境λpython-mvenvmyApp此时我们刚才