2

好吧,我完全困惑了。我整晚都在做这个,我无法让它工作。我有权查看文件,我想做的就是阅读该死的东西。每次我尝试我都会得到:

Traceback (most recent call last):
  File "<pyshell#3>", line 1, in <module>
    scan('test', rules, 0)
  File "C:\Python32\PythonStuff\csc242hw7\csc242hw7.py", line 45, in scan
    files = open(n, 'r')
IOError: [Errno 13] Permission denied: 'test\\test'

这是我的代码。它尚未完成,但我觉得我至少应该为我正在测试的部分获得正确的值。基本上我想查看一个文件夹,如果有文件扫描,它会寻找我设置的任何内容signatures。如果有文件夹,我将根据depth指定扫描或不扫描它们。如果有depth < 0那么它将返回。如果depth == 0那样,它将只扫描第一个文件夹中的元素。如果depth > 0它会扫描文件夹直到指定的深度。这些都不重要,因为无论出于何种原因,我都没有读取文件的权限。我不知道我做错了什么。

def scan(pathname, signatures, depth):
'''Recusively scans all the files contained in the folder pathname up
until the specificed depth'''
    # Reconstruct this!
    if depth < 0:
        return
    elif depth == 0:
        for item in os.listdir(pathname):
            n = os.path.join(pathname, item)
            try:
                # List a directory on n
                scan(n, signatures, depth)
            except:
                # Do what you should for a file
                files = open(n, 'r')
                text = file.read()
                for virus in signatures:
                    if text.find(signatures[virus]) > 0:
                        print('{}, found virus {}'.format(n, virus))
                files.close()

只是一个快速的编辑:

下面的代码做了非常相似的事情,但我无法控制深度。但是,它工作正常。

def oldscan(pathname, signatures):
    '''recursively scans all files contained, directly or
       indirectly, in the folder pathname'''
    for item in os.listdir(pathname):
        n = os.path.join(pathname, item)
        try:
            oldscan(n, signatures)
        except:
            f = open(n, 'r')
            s = f.read()
            for virus in signatures:
                if s.find(signatures[virus]) > 0:
                    print('{}, found virus {}'.format(n,virus))
            f.close()
4

1 回答 1

1

我冒昧地猜测那test\test是一个目录,并且发生了一些异常。您盲目地捕获异常并尝试将目录作为文件打开。这给了 Windows 上的 Errno 13。

用于os.path.isdir区分文件和目录,而不是try...except。

    for item in os.listdir(pathname):
        n = os.path.join(pathname, item)
        if os.path.isdir(n):
            # List a directory on n
            scan(n, signatures, depth)
        else:
            # Do what you should for a file
于 2012-11-06T07:40:40.233 回答