Share via


DirectoryEntry Constructors

Definition

Overloads

DirectoryEntry()

Default constructor

DirectoryEntry(String, String, Int64, String, String, Int64, Int64, String, String, Boolean, Int64)

Constructor that initializes each property

DirectoryEntry()

Default constructor

public DirectoryEntry ();
Public Sub New ()

Applies to

DirectoryEntry(String, String, Int64, String, String, Int64, Int64, String, String, Boolean, Int64)

Constructor that initializes each property

public DirectoryEntry (string name, string fullName, long length, string group, string user, long lastAccessTime, long lastModifiedTime, string type, string permission, bool hasAcl, long expiryTime);
new Microsoft.Azure.DataLake.Store.DirectoryEntry : string * string * int64 * string * string * int64 * int64 * string * string * bool * int64 -> Microsoft.Azure.DataLake.Store.DirectoryEntry
Public Sub New (name As String, fullName As String, length As Long, group As String, user As String, lastAccessTime As Long, lastModifiedTime As Long, type As String, permission As String, hasAcl As Boolean, expiryTime As Long)

Parameters

name
String

Name

fullName
String

Full path

length
Int64

Size of file

group
String

Group owner

user
String

User owner

lastAccessTime
Int64

Last access time obtained as milliseconds from 1/1/1970

lastModifiedTime
Int64

Last modified time obtained as milliseconds from 1/1/1970

type
String

File or directory

permission
String

Unix style permission

hasAcl
Boolean

Whether ACLs are set

expiryTime
Int64

Time when file would expire obtained as milliseconds from 1/1/1970

Applies to