Example #1
0
 /// <summary>
 /// Create root entry
 /// </summary>
 /// <param name="device"></param>
 internal TerminalEntry(TerminalDevice device)
 {
     this.device   = device;
     this.path     = "/";
     this.Name     = "/";
     this.FullName = "/";
     this.Link     = null;
     this.Type     = ExplorerItemType.Directory;
     this.Size     = 0;
     this.Date     = new DateTime(1970, 1, 1);
 }
Example #2
0
 internal TerminalEntry(TerminalDevice device, string path)
 {
     this.device = device;
     this.path   = path;
 }