1 2 3 4 5 6 7 8
import std/[assertions, staticos, os] block: static: doAssert staticDirExists("MISSINGFILE") == false doAssert staticFileExists("MISSINGDIR") == false doAssert staticDirExists(currentSourcePath().parentDir) doAssert staticFileExists(currentSourcePath())