If this is a dir return name (the path) or if this is a file return the path of the parent dir
| Return Type | Function name | Arguments |
|---|---|---|
| hzString | hzDirent::Path | (void) |
Declared in file: hzDirectory.h
Defined in file : hzDirectory.cpp
Function Logic:
Function body:
hzString hzDirent::Path (void)
{
// If this is a dir return name (the path) or if this is a file return the path of the parent dir
if (ISDIR(m_Mode))
return m_Name ;
return m_parent ;
}