Filesystem
File, directory, attribute, and current-directory operations.
Module: Windows
| Function | Description |
|---|---|
CopyFileA | Copy a file. |
CreateDirectoryA | Create a directory. |
DeleteFileA | Delete a file. |
GetCurrentDirectoryA | Retrieve the current directory. |
GetFileAttributesA | Retrieve filesystem attributes. |
MoveFileA | Move or rename a path. |
RemoveDirectoryA | Remove an empty directory. |
SetCurrentDirectoryA | Change the current directory. |
SetFileAttributesA | Change filesystem attributes. |
All paths use null-terminated ANSI strings and may not represent every Unicode path. Current-directory changes affect the entire process.