mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 18:32:11 +00:00
clarify the docs of existsOrCreateDir a bit (#17182)
* remove unnecessary when statement * remove outdated codes * clarify the docs a bit
This commit is contained in:
@@ -2436,11 +2436,10 @@ proc rawCreateDir(dir: string): bool {.noWeirdTarget.} =
|
||||
|
||||
proc existsOrCreateDir*(dir: string): bool {.rtl, extern: "nos$1",
|
||||
tags: [WriteDirEffect, ReadDirEffect], noWeirdTarget.} =
|
||||
## Check if a `directory`:idx: `dir` exists, and create it otherwise.
|
||||
## Checks if a `directory`:idx: `dir` exists, and creates it otherwise.
|
||||
##
|
||||
## Does not create parent directories (fails if parent does not exist).
|
||||
## Returns `true` if the directory already exists, and `false`
|
||||
## otherwise.
|
||||
## Does not create parent directories (raises `OSError` if parent directories do not exist).
|
||||
## Returns `true` if the directory already exists, and `false` otherwise.
|
||||
##
|
||||
## See also:
|
||||
## * `removeDir proc <#removeDir,string>`_
|
||||
|
||||
Reference in New Issue
Block a user