FileStatusProperties Constructors

Definition

Overloads

FileStatusProperties()

Initializes a new instance of the FileStatusProperties class.

FileStatusProperties(Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, String, Nullable<Int64>, Nullable<Int64>, String, String, String, Nullable<FileType>, Nullable<Boolean>)

Initializes a new instance of the FileStatusProperties class.

FileStatusProperties(Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, String, Nullable<Int64>, Nullable<Int64>, String, String, String, Nullable<FileType>, Nullable<Boolean>)

Initializes a new instance of the FileStatusProperties class.

FileStatusProperties()

Initializes a new instance of the FileStatusProperties class.

public FileStatusProperties ();
Public Sub New ()

Applies to

FileStatusProperties(Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, String, Nullable<Int64>, Nullable<Int64>, String, String, String, Nullable<FileType>, Nullable<Boolean>)

Initializes a new instance of the FileStatusProperties class.

public FileStatusProperties (long? accessTime = default, long? blockSize = default, long? expirationTime = default, string group = default, long? length = default, long? modificationTime = default, string owner = default, string pathSuffix = default, string permission = default, Microsoft.Azure.Management.DataLake.Store.Models.FileType? type = default, bool? aclBit = default);
new Microsoft.Azure.Management.DataLake.Store.Models.FileStatusProperties : Nullable<int64> * Nullable<int64> * Nullable<int64> * string * Nullable<int64> * Nullable<int64> * string * string * string * Nullable<Microsoft.Azure.Management.DataLake.Store.Models.FileType> * Nullable<bool> -> Microsoft.Azure.Management.DataLake.Store.Models.FileStatusProperties
Public Sub New (Optional accessTime As Nullable(Of Long) = Nothing, Optional blockSize As Nullable(Of Long) = Nothing, Optional expirationTime As Nullable(Of Long) = Nothing, Optional group As String = Nothing, Optional length As Nullable(Of Long) = Nothing, Optional modificationTime As Nullable(Of Long) = Nothing, Optional owner As String = Nothing, Optional pathSuffix As String = Nothing, Optional permission As String = Nothing, Optional type As Nullable(Of FileType) = Nothing, Optional aclBit As Nullable(Of Boolean) = Nothing)

Parameters

accessTime
Nullable<Int64>

the last access time as ticks since the epoch.

blockSize
Nullable<Int64>

the block size for the file.

expirationTime
Nullable<Int64>

Gets the expiration time, if any, as ticks since the epoch. If the value is 0 or DateTime.MaxValue there is no expiration.

group
String

the group owner.

length
Nullable<Int64>

the number of bytes in a file.

modificationTime
Nullable<Int64>

the modification time as ticks since the epoch.

owner
String

the user who is the owner.

pathSuffix
String

the path suffix.

permission
String

the permission represented as an string.

type
Nullable<FileType>

the type of the path object. Possible values include: 'FILE', 'DIRECTORY'

aclBit
Nullable<Boolean>

flag to indicate if extended acls are enabled

Applies to

FileStatusProperties(Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, String, Nullable<Int64>, Nullable<Int64>, String, String, String, Nullable<FileType>, Nullable<Boolean>)

Initializes a new instance of the FileStatusProperties class.

public FileStatusProperties (long? accessTime = default, long? blockSize = default, long? childrenNum = default, long? expirationTime = default, string group = default, long? length = default, long? modificationTime = default, string owner = default, string pathSuffix = default, string permission = default, Microsoft.Azure.Management.DataLake.Store.Models.FileType? type = default, bool? aclBit = default);
new Microsoft.Azure.Management.DataLake.Store.Models.FileStatusProperties : Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * string * Nullable<int64> * Nullable<int64> * string * string * string * Nullable<Microsoft.Azure.Management.DataLake.Store.Models.FileType> * Nullable<bool> -> Microsoft.Azure.Management.DataLake.Store.Models.FileStatusProperties
Public Sub New (Optional accessTime As Nullable(Of Long) = Nothing, Optional blockSize As Nullable(Of Long) = Nothing, Optional childrenNum As Nullable(Of Long) = Nothing, Optional expirationTime As Nullable(Of Long) = Nothing, Optional group As String = Nothing, Optional length As Nullable(Of Long) = Nothing, Optional modificationTime As Nullable(Of Long) = Nothing, Optional owner As String = Nothing, Optional pathSuffix As String = Nothing, Optional permission As String = Nothing, Optional type As Nullable(Of FileType) = Nothing, Optional aclBit As Nullable(Of Boolean) = Nothing)

Parameters

accessTime
Nullable<Int64>

the last access time as ticks since the epoch.

blockSize
Nullable<Int64>

the block size for the file.

childrenNum
Nullable<Int64>

the number of children in the directory.

expirationTime
Nullable<Int64>

Gets the expiration time, if any, as ticks since the epoch. If the value is 0 or DateTime.MaxValue there is no expiration.

group
String

the group owner.

length
Nullable<Int64>

the number of bytes in a file.

modificationTime
Nullable<Int64>

the modification time as ticks since the epoch.

owner
String

the user who is the owner.

pathSuffix
String

the path suffix.

permission
String

the permission represented as an string.

type
Nullable<FileType>

the type of the path object. Possible values include: 'FILE', 'DIRECTORY'

aclBit
Nullable<Boolean>

flag to indicate if extended acls are enabled

Applies to