没有正确检查文件大小

时间:2015-06-07 01:47:58

标签: python file python-3.x file-io operating-system

我写了一个简单的脚本,在我的下载目录中移动电影,一旦完成下载,就到了他们需要去的位置并且有一个简单的问题。

也许我不理解os模块在​​这里如何处理文件的当前大小,但它没有返回正确的文件大小。它返回下载文件的完整大小而不是硬盘上文件的大小,因为这将是我需要比较的下载大小。有没有办法解决这个问题,或者更好的检查来执行?

我评论了相关的行,并且在评论中使用time.sleep等待30秒后返回相同的大小,但实际下载的部分要大得多。

如评论中所述,文件大小是在下载之前分配的,因此这不起作用。

def check_size(file_path):
    check = False
    previous_size = os.path.getsize(file_path) # first check
    print("The current size of the movie at %s is: " %  time.strftime("%I:%M:%S"), previous_size)
    time.sleep(30)
    new_size = os.path.getsize(file_path) #30 secs later same size as first check, but downloaded size ~100 mb greater?
    print("The current size of the movie at %s is: " % time.strftime("%I:%M:%S"), new_size)
    if previous_size == new_size:
         check = True
    return check

def move_movies(source, file_extension, sub_string):
    while process_running():
        for dirpath, dirnames, filenames in os.walk(source):
            for a_file in filenames:
                if (a_file.endswith(file_extension) and sub_string in a_file):
                    path = dirpath + "\\" +  a_file
                    print("Checking the movie:", a_file, "for moving")
                    if check_size(path):  
                        print("Moving the movie: ", a_file)
                        shutil.move(dirpath, some destination path)

2 个答案:

答案 0 :(得分:0)

作为检查最近大小是否已更改的替代方法,您可以检查文件上的修改时间:

import os,time
def getAge(path):
    """ returns the age of the file in seconds """
    return (time.time() - os.stat(path).st_mtime)

答案 1 :(得分:0)

或者你可以使用mmap来记忆地映射文件。首先找到文件中的最后一个非零字节,然后检查是否有其他字节在此之后发生变化。

如果您想查看该文件是否仍由另一个进程打开,您可以使用lsof(您需要打开一个子进程来调用它)。这可能仅适用于类似Unix的操作系统,但我不知道是否有等效的Windows。