DirectoryEntry Class
Provides information about a directory entry.
|
See Also
Thread Safety
Remarks
Members
See Also: Inherited members from object.
Constructors
| Creates and initializes a new instance of the Mono.Fuse.DirectoryEntry class for the specified path. |
Fields
|
Stat
|
Mono.Unix.Native.Stat . Provides Mono.Unix.Native.Stat information to FUSE on a FileSystem.OnReadDirectory call. |
Properties
Member Details
DirectoryEntry Constructor
Creates and initializes a new instance of the Mono.Fuse.DirectoryEntry class for the specified path.
Parameters
- name
- A string containing the directory entry name.
Exceptions
| Type | Condition |
|---|---|
| ArgumentNullException | name is null. |
| ArgumentException | name contains an invalid path character, such as /. |
Remarks
Stat Field
Provides Mono.Unix.Native.Stat information to FUSE on a FileSystem.OnReadDirectory call.
Remarks
This field is only used by FileSystem.OnReadDirectory if the Mono.Unix.Native.Stat.st_ino field has a non-zero value and the FileSystem.SetsInode property is true.
This field should be filled in if your filesystem needs more control over the inode values returned to other programs. This helps facilitate corner-cases with renaming files while they're open for reading, etc.