Files
Nim/tests/tos.nim
2010-02-14 00:29:35 +01:00

13 lines
243 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 pcDirectory: walkDirTree(f)
of pcLinkToDirectory: nil
walkDirTree(".")