mirror of
https://github.com/erg-lang/erg.git
synced 2025-07-24 13:34:52 +00:00
13 lines
406 B
Python
13 lines
406 B
Python
._WINDOWS: Bool
|
|
|
|
.copyfile!: (src: PathLike, dst: PathLike,) => NoneType
|
|
.copy!: (src: PathLike, dst: PathLike,) => NoneType
|
|
.copytree!: (src: PathLike, dst: PathLike,) => NoneType
|
|
.disk_usage!: (path: PathLike,) => NamedTuple {
|
|
.total = Nat
|
|
.used = Nat
|
|
.free = Nat
|
|
}
|
|
.rmtree!: (path: PathLike,) => NoneType
|
|
.move!: (src: PathLike, dst: PathLike) => Str
|
|
.which!: (cmd: Str,) => Str or NoneType
|