aboutsummaryrefslogtreecommitdiffstats
path: root/src/fs/FileInfo.hxx (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fs/File{System,Info}: fix regular file checkMax Kellermann2015-03-051-1/+2
| | | | | | Don't use FILE_ATTRIBUTE_NORMAL, it's a "magic" value for something else. To check if a file is a regular file, we need to check if it's NOT a directory (or a device).
* fs/io/FileReader: add method GetFileInfo()Max Kellermann2015-03-031-0/+1
|
* fs/FileInfo: use GetFileAttributesEx() on WIN32Max Kellermann2015-02-281-1/+49
|
* fs/FileInfo: new library providing GetFileInfo()Max Kellermann2015-02-281-0/+106
Replaces StatFile(), with a portable data object.