FileCreateSymbolicLink Method (KernelTransaction, String, String, SymbolicLinkTarget, PathFormat) |
[AlphaFS] Creates a symbolic link.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static void CreateSymbolicLink(
KernelTransaction transaction,
string symlinkFileName,
string targetFileName,
SymbolicLinkTarget targetType,
PathFormat pathFormat
)
Public Shared Sub CreateSymbolicLink (
transaction As KernelTransaction,
symlinkFileName As String,
targetFileName As String,
targetType As SymbolicLinkTarget,
pathFormat As PathFormat
)
public:
static void CreateSymbolicLink(
KernelTransaction^ transaction,
String^ symlinkFileName,
String^ targetFileName,
SymbolicLinkTarget targetType,
PathFormat pathFormat
)
static member CreateSymbolicLink :
transaction : KernelTransaction *
symlinkFileName : string *
targetFileName : string *
targetType : SymbolicLinkTarget *
pathFormat : PathFormat -> unit
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).
See Also