2

是否有任何方法可以确定自上次访问以来目录内容(包括深层子目录结构)是否发生了变化?我正在寻找 C/C++ 中的可移植解决方案,最好在 Qt 中。

PS:如果相关,问题的背景。在我的应用程序中,当某些条件为真时,我必须递归扫描许多目录并在数据库中导入一些数据。导入目录后,我用文件“.imported”标记它,下次忽略。

现在我想标记也扫描但不导入的目录。为此,我将存储一个包含目录哈希的文件。因此,在扫描之前,我可以将计算出的哈希值与文件中的最后一个哈希值进行比较,如果它们相等则跳过扫描。

4

1 回答 1

4

有一个QFileSystemWatcher类会通知您更改。

如果要创建目录及其内容的加密哈希,我就是这样做的:-

void AddToHash(const QFileInfo& fileInf, QCryptographicHash& cryptHash)
{
    QDir directory(fileInf.absoluteFilePath());
    directory.setFilter(QDir::NoDotAndDotDot | QDir::AllDirs | QDir::Files);
    QFileInfoList fileInfoList = directory.entryInfoList();

    foreach(QFileInfo info, fileInfoList)
    {
        if(info.isDir())
        {   
            // recurse through all directories
            AddToHash(info, cryptHash);
            continue;
        }

        // add all file contents to the hash
        if(info.isFile())
        {
            QFile file(info.absoluteFilePath());
            if(!file.open(QIODevice::ReadOnly))
            {      
                // failed to open file, so skip              
                continue;
            }
            cryptHash.addData(&file);
            file.close();
        }
    }
}

// create a fileInfo from the top-level directory
QFileInfo fileInfo(filePath);
QString hash;
// Choose an arbitrary hash, say Sha1
QCryptographicHash cryptHash(QCryptographicHash::Sha1);
// add all files to the hash
AddToHash(fileInfo, cryptHash);
// get a printable version of the hash
hash = cryptHash.result().toHex();
于 2013-11-08T16:51:31.653 回答