Record TFileInfo
Unit
Declaration
type TFileInfo = record
Description
Information about a single file or directory collected by FindFiles.
Overview
Fields
Name: String; |
|
AbsoluteName: String; |
|
Url: String; |
|
Directory: Boolean; |
|
Symlink: Boolean; |
|
Size: QWord; |
Description
Fields
Name: String; |
|
Filename, without any directory path. |
AbsoluteName: String; |
|
Expanded (with absolute path) file name. Only when URL is using "file" protocol. You should prefer to use URL field instead of this, to work with all possible URLs. |
Url: String; |
|
Absolute URL. |
Directory: Boolean; |
|
This item has no description. |
Size: QWord; |
|
File size in bytes. Undefined in case of Directory, we do not sum the directory size (all files inside) here, as it is a costly operation for large directories. Use DirectorySize if you want to calculate directory size. This may be 0 in case of URL pointing to non-local file, e.g. http (though we cannot search in such URLs anyway). |
Generated by PasDoc 0.16.0-snapshot.