path_exists(ind)
Jump to navigation
Jump to search
Description
Gets whether a specified path exists or not, and returns the result.
Parameters
Parameter | Data Type | Description |
---|---|---|
ind | unsigned | index of the path |
Return Values
boolean: Returns whether or not the path exists.
Example Call
// demonstrates checking the existing of a path
if (path_exists(mypath)) {
// path does exist
} else {
// path does not exist
}