* follow up #18517

* Update lib/pure/os.nim

Co-authored-by: Timothee Cour <timothee.cour2@gmail.com>

* Update lib/pure/os.nim

Co-authored-by: Timothee Cour <timothee.cour2@gmail.com>
This commit is contained in:
flywind
2021-07-20 21:32:55 +08:00
committed by GitHub
parent dbf8d0b894
commit a8b3e7c059

View File

@@ -11,10 +11,11 @@
## retrieving environment variables, reading command line arguments,
## working with directories, running shell commands, etc.
runnableExamples("-r:off"):
runnableExamples:
let myFile = "/path/to/my/file.nim"
assert splitPath(myFile) == (head: "/path/to/my", tail: "file.nim")
assert parentDir(myFile) == "/path/to/my"
when defined(posix):
assert parentDir(myFile) == "/path/to/my"
assert splitFile(myFile) == (dir: "/path/to/my", name: "file", ext: ".nim")
assert myFile.changeFileExt("c") == "/path/to/my/file.c"