Test whether a given path name is an absolute path (returns true) or a relative path (returns false).
| Declaration | zFile.h |
|---|---|
| Implementation | zFile.cpp |
bool zfile_IsAbsolutePath(const char* lpPathName);
| Name | Type | Comment |
|---|---|---|
| lpPathName | const char* | A C-style string containing the path to be tested. |
True if the given path is a fully qualified absolute path, and false otherwise.
None.