Skip to content

Commit

Permalink
Merge pull request nim-lang#9803 from GULPF/walkdirrec-relative
Browse files Browse the repository at this point in the history
Add `relative` parameter to walkDirRec
  • Loading branch information
Araq authored Dec 6, 2018
2 parents d6dbc50 + e5aae93 commit 160a034
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 7 deletions.
19 changes: 12 additions & 7 deletions lib/pure/os.nim
Original file line number Diff line number Diff line change
Expand Up @@ -1564,11 +1564,14 @@ iterator walkDir*(dir: string; relative=false): tuple[kind: PathComponent, path:
k = getSymlinkFileKind(y)
yield (k, y)

iterator walkDirRec*(dir: string, yieldFilter = {pcFile},
followFilter = {pcDir}): string {.tags: [ReadDirEffect].} =
iterator walkDirRec*(dir: string,
yieldFilter = {pcFile}, followFilter = {pcDir},
relative = false): string {.tags: [ReadDirEffect].} =
## Recursively walks over the directory `dir` and yields for each file
## or directory in `dir`.
## The full path for each file or directory is returned.
## If ``relative`` is true the resulting path is
## shortened to be relative to ``dir``, otherwise the full path is returned.
##
## **Warning**:
## Modifying the directory structure while the iterator
## is traversing may result in undefined behavior!
Expand All @@ -1591,13 +1594,15 @@ iterator walkDirRec*(dir: string, yieldFilter = {pcFile},
## ``pcLinkToDir`` follow symbolic links to directories
## --------------------- ---------------------------------------------
##
var stack = @[dir]
var stack = @[""]
while stack.len > 0:
for k, p in walkDir(stack.pop()):
let d = stack.pop()
for k, p in walkDir(dir / d, relative = true):
let rel = d / p
if k in {pcDir, pcLinkToDir} and k in followFilter:
stack.add(p)
stack.add rel
if k in yieldFilter:
yield p
yield if relative: rel else: dir / rel

proc rawRemoveDir(dir: string) {.noNimScript.} =
when defined(windows):
Expand Down
19 changes: 19 additions & 0 deletions tests/stdlib/tos.nim
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,25 @@ block modificationTime:
echo getLastModificationTime("a") == tm
removeFile("a")

block walkDirRec:
createDir("walkdir_test/a/b")
open("walkdir_test/a/b/file_1", fmWrite).close()
open("walkdir_test/a/file_2", fmWrite).close()

for p in walkDirRec("walkdir_test"):
doAssert p.fileExists
doAssert p.startsWith("walkdir_test")

var s: seq[string]
for p in walkDirRec("walkdir_test", {pcFile}, {pcDir}, relative=true):
s.add(p)

doAssert s.len == 2
doAssert "a" / "b" / "file_1" in s
doAssert "a" / "file_2" in s

removeDir("walkdir_test")

block normalizedPath:
when defined(posix):
block relative:
Expand Down

0 comments on commit 160a034

Please sign in to comment.