/// <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); }
internal TerminalEntry(TerminalDevice device, string path) { this.device = device; this.path = path; }