The FMPFile.Meta class is used to describe information about file.
class Meta : FMPModelProtocol
| Property | Description |
atime |
The time of last call to file.
var atime: Int { get }
|
| blksize | Recommended size of block for input-output operations.
var blksize: Int { get }
|
| blocks | Actual number of selected blocks.
var blocks: Int { get }
|
| ctime | Time of inode changing.
var ctime: Int { get }
|
| dev | Device number in the file system.
var dev: Int { get }
|
| gid | Numeric ID of file owner group.
var gid: Int { get }
|
| ino | Number of inode.
var ino: Int { get }
|
| mode | File access mode and file type.
var mode: Int { get }
|
| mtime | Time of last file modification.
var mtime: Int { get }
|
| nlink | Number of links to catalog file record.
var nlink: Int { get }
|
| rdev | Device identifier (only special files).
var rdev: Int { get }
|
| size | Total file size in bytes.
var size: Int { get }
|
| uid | Numeric ID of file owner.
var uid: Int { get }
|
See also: