python创建文件备份的脚本
作者:kasumiutaha 时间:2023-04-07 06:17:44
制作文件备份
打开原文件
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”)
读取原文件内容
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的有冲突,所以需要转义字符\
# 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 directory
today = target_dir + time.strftime('%Y%m%d') #time.strftime表示对当前时间的调用,括号内为参数设定
# 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会根据系统给出分隔符
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到环境变量的路径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', target
else:
print'Backup FAILED'
总结
以上所述是小编给大家介绍的python创建文件备份的脚本网站的支持!
来源:https://blog.csdn.net/kasumiutaha/article/details/82628241
标签:python,文件,备份
0
投稿
猜你喜欢
详解Python中的Dict(下篇)
2021-11-10 17:16:14
mpvue+vant app搭建微信小程序的方法步骤
2024-05-29 22:22:42
Python之str操作方法(详解)
2021-07-21 09:14:16
详解mysql5.7密码忘记解决方法
2024-01-28 16:10:00
python使用pyecharts库画地图数据可视化的实现
2023-04-18 09:44:25
asp多关键词查询方案
2008-05-09 12:24:00
ionic在开发ios系统微信时键盘挡住输入框的解决方法(键盘弹出问题)
2024-05-02 16:18:12
Python+Selenium+Pytesseract实现图片验证码识别
2023-08-17 11:44:01
Python实现类继承实例
2023-11-13 07:44:24
Python如何脚本过滤文件中的注释
2021-10-03 15:24:52
python实现双向链表原理
2023-08-11 11:42:11
Python json解析库jsonpath原理及使用示例
2022-05-18 09:43:00
Python TypeError: ‘float‘ object is not subscriptable错误解决
2023-09-13 05:33:02
解决Pytorch自定义层出现多Variable共享内存错误问题
2023-12-14 14:43:46
python如何实现反向迭代
2023-05-17 17:37:55
django ListView的使用 ListView中获取url中的参数值方式
2022-06-17 10:41:57
Python机器学习NLP自然语言处理基本操作词向量模型
2022-01-16 10:33:42
gchart:基于google图表API的jquery组件全攻略:1、入门
2010-01-25 12:18:00
内网ssh/mysql登录缓慢的解决方法
2024-01-15 15:41:44
Python OpenCV中cv2.minAreaRect实例解析
2022-09-02 19:36:58