paths.idx 2.5 KB

12345678910111213141516171819202122232425262728293031
  1. nimTitle paths paths.html module std/paths 0
  2. nim Path paths.html#Path type Path 26
  3. nim hash paths.html#hash,Path proc hash(x: Path): Hash 28
  4. nim `$` paths.html#$.t,Path template `$`(x: Path): string 35
  5. nim `==` paths.html#==,Path,Path proc `==`(x, y: Path): bool 38
  6. nim add paths.html#add,Path,Path proc add(x: var Path; y: Path) 55
  7. nim `/` paths.html#/,Path,Path proc `/`(head, tail: Path): Path 57
  8. nim splitPath paths.html#splitPath,Path proc splitPath(path: Path): tuple[head, tail: Path] 70
  9. nim splitFile paths.html#splitFile,Path proc splitFile(path: Path): tuple[dir, name: Path, ext: string] 82
  10. nim isAbsolute paths.html#isAbsolute,Path proc isAbsolute(path: Path): bool 100
  11. nim relativePath paths.html#relativePath,Path,Path proc relativePath(path, base: Path; sep = DirSep): Path 106
  12. nim isRelativeTo paths.html#isRelativeTo,Path,Path proc isRelativeTo(path: Path; base: Path): bool 123
  13. nim parentDir paths.html#parentDir,Path proc parentDir(path: Path): Path 128
  14. nim tailDir paths.html#tailDir,Path proc tailDir(path: Path): Path 142
  15. nim isRootDir paths.html#isRootDir,Path proc isRootDir(path: Path): bool 151
  16. nim parentDirs paths.html#parentDirs.i,Path iterator parentDirs(path: Path; fromRoot = false; inclusive = true): Path 155
  17. nim `/../` paths.html#/../,Path,Path proc `/../`(head, tail: Path): Path 172
  18. nim extractFilename paths.html#extractFilename,Path proc extractFilename(path: Path): Path 181
  19. nim lastPathPart paths.html#lastPathPart,Path proc lastPathPart(path: Path): Path 193
  20. nim changeFileExt paths.html#changeFileExt,Path,string proc changeFileExt(filename: Path; ext: string): Path 204
  21. nim addFileExt paths.html#addFileExt,Path,string proc addFileExt(filename: Path; ext: string): Path 221
  22. nim unixToNativePath paths.html#unixToNativePath,Path proc unixToNativePath(path: Path; drive = Path("")): Path 236
  23. nim getCurrentDir paths.html#getCurrentDir proc getCurrentDir(): Path 248
  24. nim normalizeExe paths.html#normalizeExe,Path proc normalizeExe(file: var Path) 263
  25. nim normalizePath paths.html#normalizePath,Path proc normalizePath(path: var Path) 265
  26. nim normalizePathEnd paths.html#normalizePathEnd,Path proc normalizePathEnd(path: var Path; trailingSep = false) 267
  27. nim absolutePath paths.html#absolutePath,Path proc absolutePath(path: Path; root = getCurrentDir()): Path 269
  28. nim expandTilde paths.html#expandTilde,Path proc expandTilde(path: Path): Path 290
  29. idx baseName paths.html#basename_1 Module paths 0
  30. idx current working directory paths.html#current-working-directory_1 Module paths 0