Differences
This shows you the differences between the selected revisions of the page.
2016-07-29 | 2016-07-29 | ||
5.9 stable released (martin) | all properties are read-only (martin) | ||
Line 20: | Line 20: | ||
| char ==FileType== | File type. ''-'' for regular file, ''D'' for directory, ''L'' for symbolic link, etc. Read-only. See also ''IsDirectory''. | | | char ==FileType== | File type. ''-'' for regular file, ''D'' for directory, ''L'' for symbolic link, etc. Read-only. See also ''IsDirectory''. | | ||
| string ==FullName== | File path. Read-only. | | | string ==FullName== | File path. Read-only. | | ||
- | | string ==Group== | File group. | | + | | string ==Group== | File group. Read-only. | |
| bool ==IsDirectory== | Is file a directory? (i.e. ''FileType'' is ''D''). Read-only. | | | bool ==IsDirectory== | Is file a directory? (i.e. ''FileType'' is ''D''). Read-only. | | ||
| bool ==IsParentDirectory== | Is it a reference to a parent directory (''..'')? Read-only. | | | bool ==IsParentDirectory== | Is it a reference to a parent directory (''..'')? Read-only. | | ||
Line 26: | Line 26: | ||
| DateTime ==LastWriteTime== | Timestamp of the last file modification. Read-only. | | | DateTime ==LastWriteTime== | Timestamp of the last file modification. Read-only. | | ||
| long ==Length== | Size of the file in bytes. Read-only. | | | long ==Length== | Size of the file in bytes. Read-only. | | ||
- | | int ==Length32== | An alternative to ''Length''. Particularly useful for COM hosts, that do not support 64-bit integers, such as Visual Basic. Throws ''OverflowException'', when the file size cannot be expressed using 32-bit integer. | | + | | int ==Length32== | An alternative to ''Length''. Particularly useful for COM hosts, that do not support 64-bit integers, such as Visual Basic. Throws ''OverflowException'', when the file size cannot be expressed using 32-bit integer. Read-only. | |
- | | string ==Name== | File name. | | + | | string ==Name== | File name. Read-only. | |
- | | string ==Owner== | File owner. | | + | | string ==Owner== | File owner. Read-only. | |
===== Methods ===== | ===== Methods ===== |