Python:FileNotFoundError:[WinError 3]系统找不到指定的路径:''

问题描述 投票:0回答:3

我正在用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'.")
python python-3.x python-3.5
3个回答
1
投票

您在第一次备份期间已经读取并耗尽了该文件,因此将来会返回一个空字符串= Invalid path = FileNotFoundError

你必须回到seek()的开头。地点:

src_file.seek(0)
dst_file.seek(0)

while True:之后。

如果某些文件是只读的,则可能会阻止rmtree()工作。定义此功能:

def remove_readonly(func, path, _):
    "Clear the readonly bit and reattempt the removal"
    os.chmod(path, stat.S_IWRITE)
    func(path)

然后像这样调用rmtree()

shutil.rmtree(dst, onerror=remove_readonly)

0
投票

你必须给出绝对路径,而不是相对路径。

我写了一个简单的代码供您帮助。

import os
import shutil

source1 = os.listdir("C:/Users/ved/Documents/source/")
destination = "C:/Users/ved/Documents/dest"


for file in source1:
   fname=file
   x=("C:/Users/Eccella/Documents/source/"+fname)  #for giving absolute path
   #print(x)
   shutil.move(x, destination    #for moving from absolute path to destination folder

0
投票

只需从您的路径中删除白色空格,如:

path = your_path.strip()

然后它会正常工作

© www.soinside.com 2019 - 2024. All rights reserved.