26 lines
630 B
C++
26 lines
630 B
C++
#ifndef FILE_TREE_H
|
|
#define FILE_TREE_H
|
|
|
|
#include <string>
|
|
#include <set>
|
|
#include <unordered_map>
|
|
|
|
#include "utility/file/FilePath.h"
|
|
|
|
class FileTree
|
|
{
|
|
public:
|
|
FileTree(const FilePath& rootPath);
|
|
|
|
FilePath getAbsoluteRootPathForRelativeFilePath(const FilePath& relativeFilePath);
|
|
std::vector<FilePath> getAbsoluteRootPathsForRelativeFilePath(const FilePath& relativeFilePath);
|
|
|
|
private:
|
|
std::vector<FilePath> doGetAbsoluteRootPathsForRelativeFilePath(const FilePath& relativeFilePath, bool allowMultipleResults);
|
|
|
|
FilePath m_rootPath;
|
|
std::unordered_map<std::wstring, std::set<FilePath>> m_files;
|
|
};
|
|
|
|
#endif // FILE_TREE_H
|