aboutsummaryrefslogtreecommitdiffstats
path: root/src/fs/FileInfo.hxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-03-05fs/File{System,Info}: fix regular file checkMax Kellermann1-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).
2015-03-03fs/io/FileReader: add method GetFileInfo()Max Kellermann1-0/+1
2015-02-28fs/FileInfo: use GetFileAttributesEx() on WIN32Max Kellermann1-1/+49
2015-02-28fs/FileInfo: new library providing GetFileInfo()Max Kellermann1-0/+106
Replaces StatFile(), with a portable data object.