Kinetica   C#   API  Version 7.2.3.1
DownloadOptions.cs
Go to the documentation of this file.
1 namespace kinetica.FileSystem;
2 
6  public class DownloadOptions
7  {
12  public bool OverwriteExisting { get; set; } = true;
13 
17  public DownloadOptions()
18  {
19  }
20 
25  public DownloadOptions(bool overwriteExisting)
26  {
27  OverwriteExisting = overwriteExisting;
28  }
29 
33  public static DownloadOptions Default => new DownloadOptions(true);
34  }
static DownloadOptions Default
Returns the default download options.
bool OverwriteExisting
Gets or sets whether to overwrite existing files on the local file system.
DownloadOptions(bool overwriteExisting)
Creates a new DownloadOptions with the specified values.
DownloadOptions()
Creates a new DownloadOptions with default values.
Options for downloading files from KiFS.