DownloadDirectoryOptionsIncludeSnapshots Property |
Gets or sets a flag indicating whether to include snapshots when downloading from Azure blob storage.
Namespace:
Microsoft.Azure.Storage.DataMovement
Assembly:
Microsoft.Azure.Storage.DataMovement (in Microsoft.Azure.Storage.DataMovement.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax public bool IncludeSnapshots { get; set; }
Public Property IncludeSnapshots As Boolean
Get
Set
public:
property bool IncludeSnapshots {
bool get ();
void set (bool value);
}
member IncludeSnapshots : bool with get, set
Property Value
Type:
BooleanRemarks
If this flag is set to true, snapshots of the source blob will be copied to destination as
separate files. Given a source blob name in the form of "x.y", where 'x' is the file
name without extension and 'y' is the file name extension, the destination file name of blob
snapshot is formatted as "x (%snapshot_time_stamp%).y".
See Also