Differences
This shows you the differences between the selected revisions of the page.
2016-07-29 | 2016-07-29 | ||
all properties are read-only (martin) | crossreference name and fullname (martin) | ||
Line 19: | Line 19: | ||
| [[library_filepermissions|FilePermissions]] ==FilePermissions== | File permissions. Read-only. | | | [[library_filepermissions|FilePermissions]] ==FilePermissions== | File permissions. Read-only. | | ||
| 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. See also ''Name''. Read-only. | |
| string ==Group== | File group. Read-only. | | | 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. | | ||
Line 27: | Line 27: | ||
| 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. 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. Read-only. | | ||
- | | string ==Name== | File name. Read-only. | | + | | string ==Name== | File name. See also ''FullName''. Read-only. | |
| string ==Owner== | File owner. Read-only. | | | string ==Owner== | File owner. Read-only. | | ||