我正在用 Python 创建一个程序来自动将我的闪存驱动器备份到。第一次备份,效果很好,但是当它再次重复备份过程时,我收到此错误消息。
File "D:\Programming_Languages\Python\Automatic_Backup\Automatic_Backup.py", line 51, in <module>
shutil.copytree(src, dst)
File "C:\Users\carso\AppData\Local\Programs\Python\Python35-32\lib\shutil.py", line 303, in copytree
names = os.listdir(src)
FileNotFoundError: [WinError 3] The system cannot find the path specified: ''
path_dst.txt 的内容是“C://Users//carso//Dropbox//Backup”(无引号)。 path_src.txt 的内容是“D://Programming”(同样,没有引号)。
我一直在寻找解决方案,但我不知道如何解决这个问题。这是程序的代码,我将不胜感激。
import shutil
import os
import time
with open('program_started.txt', 'r+') as program_started_file:
# If program was previously started, runs instructions. If not, continues as normal
program_started = program_started_file.read()
if program_started == 'False':
# Gets src path file and dst path file, write only
src_file = open('path_src.txt', 'w')
dst_file = open('path_dst.txt', 'w')
# Gets src and dst paths
src_path = input('Enter source path: ')
dst_path = input('Enter destination path: ')
# Writes src and dst paths to txt file
src_file.write(src_path)
dst_file.write(dst_path)
# Moves to beginning of document
program_started_file.seek(0)
# Writes 'True' in front of prevous 'False'
program_started_file.write('True')
# Removes 'False'
program_started_file.truncate()
# Displays 'Completed' message
print("Completed getting source and destination paths")
elif program_started == 'True':
# Gets src path file and dst path file, read only
src_file = open('path_src.txt', 'r')
dst_file = open('path_dst.txt', 'r')
# Checks if flash drive is plugged in
while True:
if os.system('cd D:') == 0:
# Stores src path and dst path in string
src = src_file.read()
dst = dst_file.read()
# If a 2nd backup has been made, removes first and renames 2nd
if os.path.isdir(dst + "_2") == True:
os.rmdir(dst)
os.rename(dst + "_2", dst)
dst = dst + "_2"
# If only a 1st backup was made, creates a 2nd
elif os.path.isdir(dst) == True:
dst = dst + "_2"
# Copies data
print('Backing up...', end='')
shutil.copytree(src, dst)
print('Completed')
# Sleeps for 20 minutes
for x in range(1,12):
print("Second: ", x)
time.sleep(1)
else:
# If no flash drive is detected, tries again in 5 minutes.
time.sleep(600)
else:
# Error message if program_started.txt != true or false
print("Error: program_started.txt must only contain either 'True' or 'False'.")
原文由 Crizz 发布,翻译遵循 CC BY-SA 4.0 许可协议
您已经在第一次备份期间读取并耗尽了该文件,因此返回一个空字符串以供将来读取 = Invalid path =
FileNotFoundError
。你必须回到开头
seek()
。地方:在
while True:
之后。如果某些文件是只读的,它可能会阻止
rmtree()
工作。定义这个函数:然后像这样调用
rmtree()
: