FindFileName

This is function accepts a pointer to the name of a file along with path information and returns a pointer to the first character that is not part of the path.

extern (C) pure nothrow @trusted @nogc @live
char*
FindFileName
(
scope const char* fullPath
)

Parameters

fullPath char*

pointer to an array of characters containing a file name and possible path modifiers.

Return Value

Type: char*

Returns a pointer to the first character after any path information.

Meta