Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-03-05 | fs/File{System,Info}: fix regular file check | Max Kellermann | 1 | -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-03 | fs/io/FileReader: add method GetFileInfo() | Max Kellermann | 1 | -0/+1 | |
2015-02-28 | fs/FileInfo: use GetFileAttributesEx() on WIN32 | Max Kellermann | 1 | -1/+49 | |
2015-02-28 | fs/FileInfo: new library providing GetFileInfo() | Max Kellermann | 1 | -0/+106 | |
Replaces StatFile(), with a portable data object. |