BetterExplorer.Networks.FileSystem.SymbolicLink.SymbolicLink C# (CSharp) 메소드

SymbolicLink() 공개 메소드

Creates a new SymbolicLink file system object.
public SymbolicLink ( string name, string path, Directory parent, System.DateTime creationdate, string target ) : 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.
target string The target path of the symbolic link.
리턴 System
		public SymbolicLink(string name, string path, Directory parent, DateTime? creationdate, string target)
		{
			this.Name = name;
			this.Path = path;
			this.Target = target;
			this.Parent = parent;
			this.Type = FileSystemObjectType.SymbolicLink;
			if (creationdate.HasValue)
			{
				this.CreationDate = creationdate.Value;
			}
		}
	}
SymbolicLink