aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/filesystem.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Use ASCII specific function calls for Windows API callsJack Lloyd2018-06-251-3/+3
| | | | Fixes #1615
* Fixes for compilation in C++17 mode by MSVCJack Lloyd2018-05-131-3/+7
| | | | Fixes GH #1566
* Add function to query if filesystem support is enabled.Jack Lloyd2018-01-301-0/+15
| | | | Makes for much simpler code.
* Test OS features by the feature vs the OS nameJack Lloyd2017-12-301-6/+7
|
* Make it actually workJack Lloyd2017-09-101-2/+6
| | | | | Weirdly Wine at least does not set FILE_ATTRIBUTE_NORMAL on the files, instead sets FILE_ATTRIBUTE_ARCHIVE. ?? I have no idea what that's about.
* Well, it compilesJack Lloyd2017-09-101-1/+51
|
* Add BOTAN_UNUSED when relevant OS support is missingJack Lloyd2016-11-271-0/+1
|
* Use stat instead of lstat in get_files_recursive.Jack Lloyd2016-07-301-1/+1
| | | | | | Otherwise symlinked files are ignored. GH #565
* Avoid concatination of charsSimon Warta2015-09-221-1/+1
| | | | | | | Ever tried? auto str = "some long string"; auto str2 = str + '\n'; It's not with the brainfuck finding the bug.
* Add MSVC stl filesystem implementationSimon Warta2015-07-161-3/+30
| | | | Closes #199
* Refactor internal/filesystem.hSimon Warta2015-07-161-0/+102
Closes #198