I have found a function which returns file info: GetFileInfo()
It returns following data:
- Name: name of the file
- Path: absolute path of the file
- Parent: path to the file’s parent directory
- Type: either "directory" or "file"
- Size: file size in bytes
- Lastmodified: datetime when it was the file was most recently modified
- canRead: whether the file can be rea
- canWrite: whether the file has write permission
- isHidden: whether the file is a hidden
But this data does not show when the file was actually created. How to find it out?