If this is a dir return name (the path) or if this is a file return the path of the parent dir

Return TypeFunction nameArguments
hzStringhzDirent::Path(void)

Declared in file: hzDirectory.h
Defined in file : hzDirectory.cpp

Function Logic:

0:START 1:unknown 2:Return m_Name 3:Return m_parent

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 ;
}