| 512 | class IFileSystem { |
| 513 | public: |
| 514 | virtual ~IFileSystem() = default; |
| 515 | // say if a directory can be openened or for any reason locked |
| 516 | virtual bool IsDirectoryCanBeOpened(const std::string& vName) = 0; |
| 517 | // say if a directory exist |
nothing calls this directly
no outgoing calls
no test coverage detected