SDL_RemovePath

Remove a file or an empty directory.

Directories that are not empty will fail; this function will not recursely delete directory trees.

extern (C) nothrow @nogc extern
bool
SDL_RemovePath
(
const(char)* path
)

Parameters

path const(char)*

the path to remove from the filesystem.

Return Value

Type: bool

true on success or false on failure; call SDL_GetError() for more information.

Meta