[FileInfo FilePath]File Tags[/FileInfo]
To display information about a file or folder (including whether it exists or not), put a [FileInfo] context into a WebCatalog template. You may specify an absolute or relative path to the file just as you would specify an absolute or relative URL, and the file name itself may be a WebCatalog [xxx] tag.
Example (normally you would put the following text into a .tpl file on your server and use a web browser to link to it):
Try It!
The following tags are available inside a [FileInfo] context:
| Tag | Description |
|---|---|
|
[IsFolder] |
"T" if this item is actually a folder. "F" otherwise. |
|
[IsFile] |
"T" if this item is actually a file. "F" otherwise. |
|
[Exists] |
"T" if this file/folder actually exists on disk |
|
[FileName] |
Name of the file |
|
[FullPath] |
Full path to the file |
|
[ModDate] |
Last date the file was modified |
|
[ModTime] |
Last time the file was modified |
|
[Size] |
the file's size, in bytes |
|
[StartPath] |
The folder path leading to the file |