Validate path object.

ValidatePathDto

interface ValidatePathDto {
    IsFile?: null | boolean;
    Path?: null | string;
    ValidateWritable?: boolean;
}

Properties

IsFile?: null | boolean

Gets or sets is path file.

ValidatePathDto

Path?: null | string

Gets or sets the path.

ValidatePathDto

ValidateWritable?: boolean

Gets or sets a value indicating whether validate if path is writable.

ValidatePathDto