is_directory()

is_directory()#

Check if the specified path points to a directory.

Prototype

PUBLIC BOOL is_directory(
    const char  *path
);
        

Parameters

Key

Type

Description

path

const char *

The path to check.


Return Value

Returns TRUE if the path points to a directory, otherwise returns FALSE.

Prototype

// Not applicable in JS

Prototype

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