file_exists()

file_exists()#

Check if a file exists at the specified path.

Prototype

PUBLIC BOOL file_exists(
    const char  *path
);
        

Parameters

Key

Type

Description

path

const char *

The path to check.


Return Value

Returns TRUE if the file exists, otherwise returns FALSE.

Prototype

// Not applicable in JS

Prototype

# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples