Click or drag to resize

FileCreateSymbolicLink Method (String, String, SymbolicLinkTarget)

[AlphaFS] Creates a symbolic link.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax
public static void CreateSymbolicLink(
	string symlinkFileName,
	string targetFileName,
	SymbolicLinkTarget targetType
)

Parameters

symlinkFileName
Type: SystemString
The name of the target for the symbolic link to be created.
targetFileName
Type: SystemString
The symbolic link to be created.
targetType
Type: Alphaleonis.Win32.FilesystemSymbolicLinkTarget
Indicates whether the link target, targetFileName, is a file or directory.
Exceptions
ExceptionCondition
PlatformNotSupportedExceptionThrown when called on an unsupported platform.
Remarks
See CreateSymbolicLink to run this method in an elevated state.
See Also