Files
Nim/tests/stdlib/tos.nim

13 lines
235 B
Nim

# test some things of the os module
import os
proc walkDirTree(root: string) =
for k, f in walkDir(root):
case k
of pcFile, pcLinkToFile: echo(f)
of pcDir: walkDirTree(f)
of pcLinkToDir: discard
walkDirTree(".")