Share via


NodeFileDeleteParameters.Recursive Property

 

Optional. Gets or sets whether to delete children of a directory. If the fileName parameter represents a directory instead of a file, you can set Recursive to true to delete the directory and all of the files and subdirectories in it. If Recursive is false then the directory must be empty or deletion will fail.

Namespace:   Microsoft.Azure.Batch.Protocol.Models
Assembly:  Microsoft.Azure.Batch (in Microsoft.Azure.Batch.dll)

Syntax

public Nullable<bool> Recursive { get; set; }
public:
property Nullable<bool> Recursive {
    Nullable<bool> get();
    void set(Nullable<bool> value);
}
member Recursive : Nullable<bool> with get, set
Public Property Recursive As Nullable(Of Boolean)

Property Value

Type: System.Nullable<Boolean>

See Also

NodeFileDeleteParameters Class
Microsoft.Azure.Batch.Protocol.Models Namespace

Return to top