Project

General

Profile

Actions

$file » History » Revision 6

« Previous | Revision 6/10 (diff) | Next »
Per Amundsen, 03/01/2018 05:34 PM


Added in 1.8.10

$file(filename|foldername)

Returns information about the specified file or folder.

Default returns file size.

Same as $lof.

Parameters

filename|foldername - Filename or folder to retrieve information from.

Properties

.size - File size in bytes. (returns 0 for folders)
.ctime - Creation time. (unix timestamp)
.mtime - Last modification time. (unix timestamp)
.atime - Last access time. (unix timestamp)
.shortfn - Short file name.
.longfn - Full file name.
.attr - File attributes.
.sig - Returns "ok" if digital signed, else "none".
.version - Returns the file version, if any.
.path - The path directory.
.name - The filename without the file extension.
.ext - The file extension.

Example

; Show AdiIRC.exe filesize
//echo -ag $file($adiircexe).size

; Show explorer.exe digital signature
//echo -ag $file(c:\windows\explorer.exe).sig

Updated by Per Amundsen about 6 years ago · 6 revisions

Also available in: PDF HTML TXT