Enables pattern searches to enter zipped sub-directories.

This commit is contained in:
OTHGMars 2021-01-11 04:53:38 -05:00
parent 46b0aee637
commit 0484956a1f
4 changed files with 88 additions and 1 deletions

View file

@ -302,6 +302,7 @@ public:
virtual String getTypeStr() const = 0; ///< Used for describing the file system type
virtual FileNodeRef resolve(const Path& path) = 0;
virtual FileNodeRef resolveLoose(const Path& path) { return resolve(path); }
virtual FileNodeRef create(const Path& path,FileNode::Mode) = 0;
virtual bool remove(const Path& path) = 0;
virtual bool rename(const Path& a,const Path& b) = 0;