make tos.nim green on Windows

This commit is contained in:
Araq
2016-12-13 09:01:53 +01:00
parent 5c6a4d9e90
commit 7f8a02d0c6

View File

@@ -43,7 +43,7 @@ Raises
"""
# test os path creation, iteration, and deletion
import os
import os, strutils
let files = @["these.txt", "are.x", "testing.r", "files.q"]
let dirs = @["some", "created", "test", "dirs"]
@@ -65,18 +65,21 @@ for file in files:
echo "All:"
template norm(x): untyped =
(when defined(windows): x.replace('\\', '/') else: x)
for path in walkPattern(dname/"*"):
echo path
echo path.norm
echo "Files:"
for path in walkFiles(dname/"*"):
echo path
echo path.norm
echo "Dirs:"
for path in walkDirs(dname/"*"):
echo path
echo path.norm
# Test removal of files dirs
for dir in dirs: