fs_delete_file

int fs_delete_file(const char *path)

Deletes a file if it exists.

if (!fs_delete_file("foo.txt"))
{
    printf("fs_delete_file failed");
}

Parameters

path[in] Some null-terminated path

Returns

If the file was deleted.