src/pylib/Lib/os_impl/path

Source   Edit  

Procs

proc abspath[T](s: PathLike[T]): T
Source   Edit  
func basename[T](s: PathLike[T]): T
Source   Edit  
func dirname[T](s: PathLike[T]): T
Source   Edit  
proc getatime[T](p: PathLike[T]): float
Source   Edit  
proc getctime[T](p: PathLike[T]): float
Source   Edit  
proc getmtime[T](p: PathLike[T]): float
Source   Edit  
proc getsize[T](filename: PathLike[T]): int
Source   Edit  
func isabs(s: PathLike): bool
Source   Edit  
proc isdir(s: PathLike): bool
Source   Edit  
proc isfile(s: PathLike): bool
Source   Edit  
func join[T](a, b, c: PathLike[T]; ps: varargs[PathLike[T]]): T
..warning:: NIM-BUG: Currently this variant may fail to compile with Error: type mismatch Source   Edit  
func join[T](a, b: PathLike[T]): T
Source   Edit  
proc normpath[T](s: PathLike[T]): T
Source   Edit  
func relpath[T](p: PathLike[T]; start = curdir): T
Source   Edit  
func samefile(a, b: PathLike): bool
Source   Edit  
func split[T](p: PathLike[T]): (T, T)
Source   Edit  
func splitdrive[T](p: PathLike[T]): (T, T)
Source   Edit  
func splitext[T](p: PathLike[T]): (T, T)
Source   Edit