Uses of Class
com.azure.storage.file.share.options.ShareDirectoryCreateOptions
Packages that use ShareDirectoryCreateOptions
Package
Description
This package contains the classes to perform actions on Azure Storage File.
Package containing options model classes used by Azure Storage File Shares.
-
Uses of ShareDirectoryCreateOptions in com.azure.storage.file.share
Methods in com.azure.storage.file.share with parameters of type ShareDirectoryCreateOptionsModifier and TypeMethodDescriptionMono<com.azure.core.http.rest.Response<ShareDirectoryAsyncClient>> ShareAsyncClient.createDirectoryIfNotExistsWithResponse(String directoryName, ShareDirectoryCreateOptions options) Creates the directory in the share with the given name and associates the passed metadata to it if it does not exist.com.azure.core.http.rest.Response<ShareDirectoryClient> ShareClient.createDirectoryIfNotExistsWithResponse(String directoryName, ShareDirectoryCreateOptions options, Duration timeout, com.azure.core.util.Context context) Creates the directory if it does not exist in the share with the given name and associates the passed metadata to it.Mono<com.azure.core.http.rest.Response<ShareDirectoryInfo>> ShareDirectoryAsyncClient.createIfNotExistsWithResponse(ShareDirectoryCreateOptions options) Creates a directory in the file share if it does not exist.com.azure.core.http.rest.Response<ShareDirectoryInfo> ShareDirectoryClient.createIfNotExistsWithResponse(ShareDirectoryCreateOptions options, Duration timeout, com.azure.core.util.Context context) Creates a directory in the file share if it does not exist.Mono<com.azure.core.http.rest.Response<ShareDirectoryAsyncClient>> ShareDirectoryAsyncClient.createSubdirectoryIfNotExistsWithResponse(String subdirectoryName, ShareDirectoryCreateOptions options) Creates a subdirectory under current directory with specific name and metadata if it does not exist, and returns a response of ShareDirectoryAsyncClient to interact with it.com.azure.core.http.rest.Response<ShareDirectoryClient> ShareDirectoryClient.createSubdirectoryIfNotExistsWithResponse(String subdirectoryName, ShareDirectoryCreateOptions options, Duration timeout, com.azure.core.util.Context context) Creates a subdirectory under current directory with specific name and metadata if it does not exist.Mono<com.azure.core.http.rest.Response<ShareDirectoryInfo>> ShareDirectoryAsyncClient.createWithResponse(ShareDirectoryCreateOptions options) Creates a directory in the file share and returns a response of ShareDirectoryInfo to interact with it.com.azure.core.http.rest.Response<ShareDirectoryInfo> ShareDirectoryClient.createWithResponse(ShareDirectoryCreateOptions options, Duration timeout, com.azure.core.util.Context context) Creates a directory in the file share and returns a response of ShareDirectoryInfo to interact with it. -
Uses of ShareDirectoryCreateOptions in com.azure.storage.file.share.options
Methods in com.azure.storage.file.share.options that return ShareDirectoryCreateOptionsModifier and TypeMethodDescriptionShareDirectoryCreateOptions.setFilePermission(String filePermissionKey) Sets the file permission key.ShareDirectoryCreateOptions.setFilePermissionFormat(FilePermissionFormat filePermissionFormat) Sets the file permission format.ShareDirectoryCreateOptions.setMetadata(Map<String, String> metadata) Sets the metadata to associate with the directory.ShareDirectoryCreateOptions.setSmbProperties(FileSmbProperties smbProperties) Sets the SMB properties to set on the destination directory.