| Package | Description |
|---|---|
| com.azure.storage.file.share |
This package contains the classes to perform actions on Azure Storage File.
|
| Modifier and Type | Method and Description |
|---|---|
ShareFileUploadInfo |
ShareFileClient.clearRange(long length)
Clears a range of bytes to specific of a file in storage file service.
|
ShareFileUploadInfo |
ShareFileClient.upload(InputStream data,
long length)
Deprecated.
Use
ShareFileClient.uploadRange(InputStream, long) instead. Or consider
ShareFileClient.upload(InputStream, long, ParallelTransferOptions) for an upload that can handle
large amounts of data. |
ShareFileUploadInfo |
ShareFileClient.upload(InputStream data,
long length,
ParallelTransferOptions transferOptions)
Buffers a range of bytes and uploads sub-ranges in parallel to a file in storage file service.
|
ShareFileUploadInfo |
ShareFileClient.uploadRange(InputStream data,
long length)
Uploads a range of bytes to the specified offset of a file in storage file service.
|
Visit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.