BetterExplorer.Networks.FileSystem.Directory.Directory C# (CSharp) Метод

Directory() публичный Метод

Creates a new SymbolicLink file system object.
public Directory ( string name, string path, Directory parent, System.DateTime creationdate ) : System
name string The name of the symbolic link.
path string The path of the symbolic link in the file system.
parent Directory
creationdate System.DateTime The date the symbolic link was created.
Результат System
		public Directory(string name, string path, Directory parent, DateTime? creationdate)
		{
			this.Name = name;
			this.Path = path;
			this.Parent = parent;
			this.Type = FileSystemObjectType.Directory;
			if (creationdate.HasValue)
			{
				this.CreationDate = creationdate.Value;
			}
		}
	}
Directory