summary refs log tree commit diff stats
path: root/lib/std/dirs.nim
Commit message (Collapse)AuthorAgeFilesLines
* stdlib organization & documentation improvements (#20971)metagn2022-12-061-0/+2
| | | | | | | | | | | | | | | | | * stdlib organization & documentation improvements * fix CI * Update doc/lib.md Co-authored-by: Juan Carlos <juancarlospaco@gmail.com> * fix ci, remove jshttpcore, export in jsfetch instead * fix alphabetical order violations * add cmdline, db_odbc Co-authored-by: Juan Carlos <juancarlospaco@gmail.com>
* Fix #20628 for Windows (#20667)Andrey Makarov2022-10-281-6/+6
| | | | | | | * Fix #20628 for Windows * Move isRegular - !isSpecial and onlyRegular - skipSpecial * Forgot to change it in 1 more place
* cleanup os related documentation links (#20663)ringabout2022-10-271-14/+3
| | | cleanup documentation links
* clean up `std/os` related modules (#20651)ringabout2022-10-251-46/+9
| | | | | | | | | * clean up `std/os` related modules * use `cmpPaths` * reset * cleanup
* Implement Unix file regularity check (#20448) (#20628)Andrey Makarov2022-10-251-14/+18
| | | | | * Implement Unix file regularity check * update std/dirs also
* add typesafe `std/paths`, `std/files`, `std/dirs`, `std/symlinks` (#20582)ringabout2022-10-211-0/+177
* split std/os; add typesafe std/paths * add more files, dirs, paths * add documentation * add testcase * remove tryRemoveFile * clean up * Delete test.nim * apply changes * add `add` and fixes