Exemplo n.º 1
0
 /// <inheritdoc />
 public override bool DirectoryExists(AbsolutePath path)
 {
     return(m_fileSystem.IsDirectory(path));
 }
        /// <inheritdoc />
        public override bool DirectoryExists(AbsolutePath path)
        {
            var physicalPath = path.ToString(m_pathTable);

            return(m_fileSystem.IsDirectory(path));
        }