Click or drag to resize

FileCreateSymbolicLinkTransacted Method (KernelTransaction, String, String, SymbolicLinkTarget, PathFormat)

[AlphaFS] Creates a symbolic link.

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

Parameters

transaction
Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction.
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.
pathFormat
Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Exceptions
ExceptionCondition
PlatformNotSupportedExceptionThrown when called on an unsupported platform.
Remarks
See CreateSymbolicLink to run this method in an elevated state.
See Also