| JumboDirectory Constructor |
Namespace:
Ookii.Jumbo.Dfs.FileSystem
Assembly:
Ookii.Jumbo.Dfs (in Ookii.Jumbo.Dfs.dll) Version: 2.0.0
Syntax public JumboDirectory(
string fullPath,
string name,
DateTime dateCreated,
IEnumerable<JumboFileSystemEntry> children
)
Public Sub New (
fullPath As String,
name As String,
dateCreated As DateTime,
children As IEnumerable(Of JumboFileSystemEntry)
)
public:
JumboDirectory(
String^ fullPath,
String^ name,
DateTime dateCreated,
IEnumerable<JumboFileSystemEntry^>^ children
)
new :
fullPath : string *
name : string *
dateCreated : DateTime *
children : IEnumerable<JumboFileSystemEntry> -> JumboDirectory
Parameters
- fullPath
- Type: SystemString
The full path or the directory. - name
- Type: SystemString
The name of the directory. - dateCreated
- Type: SystemDateTime
The date the directory was created. - children
- Type: System.Collections.GenericIEnumerableJumboFileSystemEntry
The children of the directory. May be .
See Also