public FileResource(FileResourcePool pool, IResource?parent, FilePath path) { Path = path; Parent = parent; this.pool = pool; }
public DirectoryResource(FileResourcePool pool, IResource?parent, string pathText) : this(pool, parent, new FilePath(pathText)) { }