这次的需求是这样的
我经常会写很多保存在Navicat的SQL,上上周电脑崩了,结果SQL都没了.为了解决这个问题,我决定写一个Python让它每天自动备份我的SQL,然后顺便备份一部分文件到OneDrive(因为习惯是在桌面进行操作)
shutil
的移动文件语法很简单
shutil.move('原文件完整路径(带文件名)','目标文件夹')
例如我要移动桌面的订单明细.xlsx
文件到F:\bak
文件夹下,代码如下
shutil.move(r'C:\Users\dan\Desktop\订单明细.xlsx',r'F:\bak')
...shutil.Error: Destination path 'F:\bak\订单明细.xlsx' already exists...
exists
方法判断#import os
#import datetime ##重命名加时间戳用
def path_file_isexist(uFilepath,uFolder):
if os.path.exists(os.path.join(uFolder,uFilepath.split('\\')[-1])):#目标文件夹+要移动的文件名
newFilepath='{0}_{1}.{2}'.format(uFilepath.split('.')[0],datetime.datetime.now().strftime('%Y%m%d%H%M%S'),uFilepath.split('.')[-1])#存在,则切割成:原文件路径(不带格式)_时间戳.原文件格式
os.rename(uFilepath,newFilepath) # 重命名
return newFilepath # 返回新文件路径
else:
return uFilepath # 不重复,返回原路径
...FileNotFoundError: [WinError 3] 系统找不到指定的路径...
exists
判断#import os
def path_folder_isexist(uDir):
if os.path.exists(uDir):
return uDir # 有这个文件夹,直接返回原路径
else:
os.mkdir(uDir) # 没有这个文件夹,就创建一个
return uDir # 返回新路径
这是个无解的Bug,如果杀进程那每次都要调整预期的程序,比较麻烦.所以我直接try…except…
捕捉错误了.伪代码如下
#import shutil
def action_move(uF):
try:
shutil.move(uFile,uFolder) #尝试移动
except Exception as e:
print(e) #移动不成功,打印报错信息
pass
import shutil
import getpass
import os
import datetime
path_desk = r'C:\Users\%s\Desktop' % getpass.getuser() # 要整理文件地址(我是桌面)
path_onedrive = r'%s\doc\bak' % os.environ['onedrive'] # 引用环境变量中的onedrive地址
path_local_bak = r'F:\danzhao\4 bakbypython' # 大文件备份的地址
file_size_max=1024**2*15 # 大文件标准
list_format=['xls','xlsx','csv'] # 此次执行针对的文件类型
#0 自定函数块
def list_file_in_folder(uFolder,uFormat):
#获取文件夹下指定格式的所有文件
file_container=[]
for uFile in os.listdir(uFolder):
uPath = os.path.join(uFolder,uFile)
if os.path.isfile(uPath) and os.path.splitext(uFile)[-1] in uFormat:
file_container.append(uPath)
return file_container
def path_folder_isexist(uDir):
#如果存在文件夹,则返回原路径
#如果不存在文件夹,则创建该目录并返回
if os.path.exists(uDir):
return uDir
else:
os.mkdir(uDir)
return uDir
def path_file_isexist(uFilepath,uFolder):
#如果文件已存在目标文件夹,则改名:文件名+时间戳
#如果不存在,返回原路径
if os.path.exists(os.path.join(uFolder,uFilepath.split('\\')[-1])):
#倒数第一个小数点后的字符隔离,插入时间戳
newFilepath = '{0}_{1}.{2}'.format(uFilepath.split('.')[0],datetime.datetime.now().strftime('%Y%m%d%H%M%S'),uFilepath.split('.')[-1])
os.rename(uFilepath,newFilepath)
return newFilepath
else:
return uFilepath
def list_split(uFileList,uSize):
#大文件和小文件分列表存放
list_big,list_small=[],[]
for uFile in uFileList:
if os.path.getsize(uFile) > uSize: # 大文件集合
list_big.append(uFile)
else:
list_small.append(uFile) # 小文件集合
return list_big,list_small
def action_move(uDic):
#要移动到的文件夹:要移动的文件列表
for ky,vlu in uDic.items():
uFolder=path_folder_isexist(ky)
for uFile in vlu:
# try用来捕捉文件正在运行的错误
try:
shutil.move(path_file_isexist(uFile,ky),uFolder)
except Exception as e:
print(e)
pass
#1 备份我的文件到OneDrive(移动)
file_loacal_bak = list_file_in_folder(path_local_bak,list_format)
file_desk = list_file_in_folder(path_desk,list_format)
file_mv2local,file_mv2onedrive=list_split(file_desk,file_size_max)
dict_move={
path_local_bak:file_mv2local,
path_onedrive:file_mv2onedrive
} # 字典{文件备份路径:文件列表}
action_move(dict_move)
持续更新中
持续更新中