Mono<ShareDirectoryAsyncClient> |
ShareAsyncClient.createDirectory(String directoryName) |
Creates the directory in the share with the given name.
|
Mono<com.azure.core.http.rest.Response<ShareDirectoryAsyncClient>> |
ShareAsyncClient.createDirectoryWithResponse(String directoryName,
FileSmbProperties smbProperties,
String filePermission,
Map<String,String> metadata) |
Creates the directory in the share with the given name and associates the passed metadata to it.
|
Mono<ShareDirectoryAsyncClient> |
ShareDirectoryAsyncClient.createSubdirectory(String subdirectoryName) |
Creates a subdirectory under current directory with specific name and returns a response of
ShareDirectoryAsyncClient to interact with it.
|
Mono<com.azure.core.http.rest.Response<ShareDirectoryAsyncClient>> |
ShareDirectoryAsyncClient.createSubdirectoryWithResponse(String subdirectoryName,
FileSmbProperties smbProperties,
String filePermission,
Map<String,String> metadata) |
Creates a subdirectory under current directory with specific name , metadata and returns a response of
ShareDirectoryAsyncClient to interact with it.
|
Mono<ShareDirectoryAsyncClient> |
ShareDirectoryAsyncClient.rename(String destinationPath) |
Moves the directory to another location within the share.
|
Mono<com.azure.core.http.rest.Response<ShareDirectoryAsyncClient>> |
ShareDirectoryAsyncClient.renameWithResponse(ShareFileRenameOptions options) |
Moves the directory to another location within the share.
|