MoveFileA v0.1.0

Source
Moves or renames a file or directory.

Package: Windows

Microsoft documentation: MoveFileA

Signature

func MoveFileA(
    existingFileName: *char8,
    newFileName: *char8
) -> bool32;

Both names must be null-terminated ANSI paths. Returns nonzero on success or zero on failure. MoveFileA does not provide replacement flags for an existing destination.

See also