summary refs log tree commit diff stats
path: root/lib/pure/os.nim
Commit message (Expand)AuthorAgeFilesLines
* fix #8225 os.isHidden was buggy on posix (#8315)Timothee Cour2018-10-151-23/+17
* os: use unlink() to remove file (#9220)alaviss2018-10-091-3/+1
* [os] clarify docs for existsDir (#9212)Timothee Cour2018-10-091-1/+1
* Fix #9126: use splitPath instead of substrYasuhiro Horimoto2018-09-301-2/+2
* os: add getAppFilename() implementation for HaikuLeorize2018-09-241-0/+20
* os.nim: allow walkDir to work on hierarchies with dangling symbolic links; re...Andreas Rumpf2018-09-241-5/+1
* even more strict isNil handling for strings/seqs in order to detect bugsAraq2018-08-221-3/+8
* Genode fixes (#8501)Emery Hemingway2018-08-161-2/+8
* Haiku support for Nim (#8542)alaviss2018-08-141-1/+12
* addresses issue #8391 show runtime context on some failed operations (#8393)Timothee Cour2018-07-231-4/+4
* add os.absolutePath; fixes #8174 (#8213)Timothee Cour2018-07-101-0/+20
* Add normalizePath and testsFederico Ceratto2018-07-061-2/+43
* Nintendo switch support (#8069)Joey2018-06-271-2/+10
* fixes merge conflictAndreas Rumpf2018-06-111-1/+1
|\
| * Native access to Genode environmentEmery Hemingway2018-06-071-1/+1
* | fixex merge conflictsAraq2018-06-081-12/+20
|\|
| * Use higher time resolution when available in os.nim (#7709)Oscar Nihlgård2018-06-041-12/+20
* | Merge branch 'devel' into araq-big-refactoringAndreas Rumpf2018-05-281-1/+2
|\|
| * Update existsFile documentation (#7888)Federico Ceratto2018-05-271-1/+2
* | Merge branch 'devel' into araq-big-refactoringAndreas Rumpf2018-05-211-1/+3
|\|
| * remove unneeded check on lengthkoranza2018-05-191-1/+1
| * check string lengths to avoid index out of boundkoranza2018-05-181-2/+4
* | os.nim: don't use echo for error reportingAndreas Rumpf2018-05-181-1/+1
|/
* remove deprecated stuff from the stdlib; introduce better deprecation warningsAraq2018-05-051-16/+0
* more fixes for the new string behaviourAndreas Rumpf2018-04-301-11/+9
* remove dead code elimination option (#7669)Jacek Sieka2018-04-231-1/+1
* Add `fromWinTime` and deprecate `unixTimeToWinTime`/`winTimeToUnixTime` (#7641)Oscar Nihlgård2018-04-191-8/+6
* Change type of `Timeval.tv_sec` to `posix.Time` (#7646)Oscar Nihlgård2018-04-181-1/+1
* os.setLastModificationTime*(file: string, t: times.Time) (#7543)Hendrik2018-04-161-3/+19
* explicit effects for existsOrCreateDirAndreas Rumpf2018-04-141-1/+2
* Sub second time resolution (#6978)Oscar Nihlgård2018-04-131-2/+2
* Allow searching for "rename file" in documentationFederico Ceratto2018-04-071-0/+1
* fixes #6939Andreas Rumpf2018-02-021-5/+10
* Remove additionalInfo in OSError in findNextFileDominik Picheta2018-01-111-2/+2
* correct type for raiseOSErroroskca2018-01-111-3/+3
* raiseOSError to indicate the failling of findNextFile in walkDir[Rec]oskca2018-01-111-2/+8
* check ERROR_NO_MORE_FILES to prevent walkDir[Rec] to quit prematurelyoskca2018-01-111-2/+2
* Modified behavior of walkDirRec (#6952)Dmitry Atamanov2017-12-211-11/+19
* Better times module (#6552)GULPF2017-12-181-17/+18
* os.nim bugfix: system() returns bullshit on Posix-like systems in generalAndreas Rumpf2017-12-011-1/+1
* Clarify paramStr / paramCount use and availability (#6727)Federico Ceratto2017-11-141-9/+11
* breaking change: arrays of char do not convert to cstring; ptr to array of ch...Andreas Rumpf2017-10-101-1/+4
* Merge branch 'stringify-array' of https://github.com/krux02/Nim into krux02-s...Andreas Rumpf2017-10-091-1/+1
|\
| * removed newString proc again, reverted some unnecesary changesArne Döring2017-07-241-1/+1
| * arrays can now be printedArne Döring2017-07-241-1/+1
* | os.nim: revert findExe 'improvement' that breaks our buildsAndreas Rumpf2017-09-011-6/+1
* | os.findExe: do not return binaries in the cwdAraq2017-09-011-1/+6
* | refactor os.nim and ospaths.nimAndreas Rumpf2017-09-011-266/+54
* | os.nim: do not include and import ospathsAndreas Rumpf2017-09-011-9/+1
* | allow non-admins to create symlinks on windows (#6287)Charlie Barto2017-08-291-1/+3
|/
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691