Esempio n. 1
0
        internal LocalDirectory(LocalDrive drive, DirectoryInfo dir,
                                LocalDirectory parent = null)
        {
            this.Drive  = drive;
            this.Parent = parent;

            this._DIR = dir;
        }
Esempio n. 2
0
 internal LocalFile(LocalDirectory dir, FileInfo file)
 {
     this.Directory = dir;
     this._FILE     = file;
 }