mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
13 lines
235 B
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(".")
|