FileSystemOperationsExtensions.CreateSymLink Method (IFileSystemOperations, String, String, String, Nullable<Boolean>)
Creates a symbolic link.
Namespace: Microsoft.Azure.Management.DataLake.StoreFileSystem
Assembly: Microsoft.Azure.Management.DataLake.StoreFileSystem (in Microsoft.Azure.Management.DataLake.StoreFileSystem.dll)
Syntax
public static AzureOperationResponse CreateSymLink(
this IFileSystemOperations operations,
string sourcePath,
string accountName,
string destinationPath,
Nullable<bool> createParent
)
public:
[ExtensionAttribute]
static AzureOperationResponse^ CreateSymLink(
IFileSystemOperations^ operations,
String^ sourcePath,
String^ accountName,
String^ destinationPath,
Nullable<bool> createParent
)
static member CreateSymLink :
operations:IFileSystemOperations *
sourcePath:string *
accountName:string *
destinationPath:string *
createParent:Nullable<bool> -> AzureOperationResponse
<ExtensionAttribute>
Public Shared Function CreateSymLink (
operations As IFileSystemOperations,
sourcePath As String,
accountName As String,
destinationPath As String,
createParent As Nullable(Of Boolean)
) As AzureOperationResponse
Parameters
operations
Type: Microsoft.Azure.Management.DataLake.StoreFileSystem.IFileSystemOperationsReference to the Microsoft.Azure.Management.DataLake.StoreFileSystem.IFileSystemOperations.
sourcePath
Type: System.StringRequired. The path to the directory or file to create a symlink of.
accountName
Type: System.StringRequired. The name of the account to use
destinationPath
Type: System.StringRequired. The path to create the symlink at
createParent
Type: System.Nullable<Boolean>Required. If the parent directories do not exist, indicates if they should be created.
Return Value
Type: Microsoft.Azure.AzureOperationResponse
A standard service response including an HTTP status code and request ID.
See Also
FileSystemOperationsExtensions Class
Microsoft.Azure.Management.DataLake.StoreFileSystem Namespace
Return to top