Get file or file system status.
Class: xbmcvfs.Stat(path) These class return information about a file. Execute (search) permission is required on all of the directories in path that lead to the file.
| path | [string] file or folder |
Example:
| st_mode | ( | ) |
Function: st_mode() | st_ino | ( | ) |
Function: st_ino() | st_dev | ( | ) |
Function: st_dev() The st_dev field describes the device on which this file resides.
| st_nlink | ( | ) |
Function: st_nlink() | st_uid | ( | ) |
Function: st_uid() | st_gid | ( | ) |
Function: st_gid() | st_size | ( | ) |
Function: st_size() The st_size field gives the size of the file (if it is a regular file or a symbolic link) in bytes. The size of a symbolic link (only on Linux and Mac OS X) is the length of the pathname it contains, without a terminating null byte.
| st_atime | ( | ) |
Function: st_atime() | st_mtime | ( | ) |
Function: st_mtime() | st_ctime | ( | ) |
Function: st_ctime()