发布时间:2019-08-26 07:19:56编辑:auto阅读(2216)
- import os
- import time
- source='C:\\Linda\\Test\\Python\\source'
- target_dir='C:\\Linda\\Test\\Python\\backup\\'
- target=target_dir + time.strftime('%Y%m%d%H%M%S')+'.rar'
- print(target)
- rar_command = "winrar a %s %s"%(target,source)
- print (rar_command)
- if os.system(rar_command)==0:
- print ('Succeed to backup to', target)
- else:
- print ("Backup FAILED")
上一篇: cPanel虚拟主机上运行Python的
下一篇: centos7.3更换python版本-
51308
50760
41357
38165
32639
29535
28381
23255
23223
21548
1620°
2356°
1958°
1904°
2232°
1941°
2632°
4414°
4250°
3022°