Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-02-28 | fs/FileSystem: remove unused WIN32 port of StatFile() | Max Kellermann | 1 | -5/+4 | |
2015-02-27 | fs/FileSystem: use GetFileAttributes() on WIN32 if possible | Max Kellermann | 1 | -2/+20 | |
2015-02-27 | fs/FileSystem: merge CheckAccess() into PathExists() | Max Kellermann | 1 | -16/+6 | |
PathExists() should better do what CheckAccess() does, and CheckAccess() doesn't do what its name implies. | |||||
2015-02-25 | fs/FileSystem: remove unused FOpenModes | Max Kellermann | 1 | -20/+0 | |
2015-01-01 | Copyright year 2015 | Max Kellermann | 1 | -1/+1 | |
2014-01-13 | copyright year 2014 | Max Kellermann | 1 | -1/+1 | |
2013-12-05 | fs/FileSystem.hxx: don't define CheckAccess() with mode on Windows | Denis Krjuchkov | 1 | -8/+2 | |
2013-12-05 | fs/FileSystem.hxx: add CheckAccess without mode parameter | Denis Krjuchkov | 1 | -0/+14 | |
2013-12-05 | fs/Traits: split PathTraits type into PathTraitsFS and PathTraitsUTF8 | Denis Krjuchkov | 1 | -7/+7 | |
2013-11-28 | include cleanup using iwyu | Max Kellermann | 1 | -1/+0 | |
2013-10-17 | fs/Path: rename to AllocatedPath | Max Kellermann | 1 | -15/+22 | |
The new class Path only holds a string pointer without being responsible for allocation/deallocation. The FileSystem.hxx library accepts Path arguments instead of AllocatedPath, to avoid forcing callers to allocate another string object. | |||||
2013-10-17 | fs/Path: move definitions to struct PathTraits | Max Kellermann | 1 | -30/+32 | |
2013-08-07 | os/FileSystem: disable mkfifo() wrapper on WIN32 | Max Kellermann | 1 | -0/+4 | |
2013-08-07 | ConfigPath: return a Path object | Max Kellermann | 1 | -0/+6 | |
Migrate all callers to use Path directly, instead of doing the conversion in each caller. | |||||
2013-08-07 | Makefile.am: move sources to libsystem.a | Max Kellermann | 1 | -1/+1 | |
2013-02-02 | FileSystem.hxx: add FOpen modes for appending files | Denis Krjuchkov | 1 | -0/+10 | |
2013-01-22 | FileSystem: extract DirectoryReader, improve the rest | Denis Krjuchkov | 1 | -82/+32 | |
- DirectoryReader is extracted to separate header - FileSystem.cxx/FileSystem.hxx/DirectoryReader.hxx moved to fs/ subdir - Functions return true on success, instead of 0 (where applicable) - ReadLink return result instead of out parameter - UnlinkFile is renamed to RemoveFile - CheckExists/CheckIsRegular/CheckIsDirectory are renamed to PathExists/FileExists/DirectoryExists | |||||
2013-01-20 | FileSystem: new library for Path-friendly file system routines | Denis Krjuchkov | 1 | -0/+203 | |