Example #1
0
        public LocalFile(string subpath, FileInfo info, IFileSystem fileSystem)
        {
            _fi = info;

            FileSystem = fileSystem;
            SubPath    = FileSystemBase.NormalizePath(subpath);
        }
Example #2
0
        public LocalDirectory(string subpath, DirectoryInfo info, IFileSystem fileSystem)
        {
            _di = info;

            FileSystem = fileSystem;
            SubPath    = FileSystemBase.NormalizePath(subpath);
        }
Example #3
0
 public NotFoundFile(string subpath, IFileSystem fs)
 {
     SubPath    = FileSystemBase.NormalizePath(subpath);
     FileSystem = fs;
 }