diff options
author | Araq <rumpf_a@web.de> | 2014-07-11 08:15:51 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-07-11 08:15:51 +0200 |
commit | c260b22fbca0e8a3be903c1c6db2027cfcf1c7f2 (patch) | |
tree | 3d99181e4787f806abae1992b28f8f4e75e5d3c0 | |
parent | 49ad6fc3d46ce5af146196af6277dfd11599a849 (diff) | |
parent | 09d67d98841b4a22113fa6e541d6a61ca85c6fee (diff) | |
download | Nim-c260b22fbca0e8a3be903c1c6db2027cfcf1c7f2.tar.gz |
Merge branch 'devel' of https://github.com/Araq/Nimrod into devel
-rw-r--r-- | lib/pure/os.nim | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim index e2fc62d77..0b4538abc 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -1769,16 +1769,16 @@ else: FileId = TIno type - FileInfo = object + FileInfo* = object ## Contains information associated with a file object. - id: tuple[device: DeviceId, file: FileId] # Device and file id. - kind: TPathComponent # Kind of file object - directory, symlink, etc. - size: BiggestInt # Size of file. - permissions: set[TFilePermission] # File permissions - linkCount: BiggestInt # Number of hard links the file object has. - lastAccessTime: TTime # Time file was last accessed. - lastWriteTime: TTime # Time file was last modified/written to. - creationTime: TTime # Time file was created. Not supported on all systems! + id*: tuple[device: DeviceId, file: FileId] # Device and file id. + kind*: TPathComponent # Kind of file object - directory, symlink, etc. + size*: BiggestInt # Size of file. + permissions*: set[TFilePermission] # File permissions + linkCount*: BiggestInt # Number of hard links the file object has. + lastAccessTime*: TTime # Time file was last accessed. + lastWriteTime*: TTime # Time file was last modified/written to. + creationTime*: TTime # Time file was created. Not supported on all systems! template rawToFormalFileInfo(rawInfo, formalInfo): expr = ## Transforms the native file info structure into the one nimrod uses. |