ResourceFile.FilePath Property

Definition

Gets or sets the location on the compute node to which to download the file, relative to the task's working directory.

[Newtonsoft.Json.JsonProperty(PropertyName="filePath")]
public string FilePath { get; set; }
[<Newtonsoft.Json.JsonProperty(PropertyName="filePath")>]
member this.FilePath : string with get, set
Public Property FilePath As String

Property Value

Attributes
Newtonsoft.Json.JsonPropertyAttribute

Remarks

If the httpUrl property is specified, the filePath is required and describes the path which the file will be downloaded to, including the filename. Otherwise, if the autoStorageContainerName or storageContainerUrl property is specified, filePath is optional and is the directory to download the files to. In the case where filePath is used as a directory, any directory structure already associated with the input data will be retained in full and appended to the specified filePath directory. The specified relative path cannot break out of the task's working directory (for example by using '..').

Applies to