Ejemplo n.º 1
0
bool
Pathname::exists() const
{
  switch(m_type)
  {
    case kEmpty:
      return false;

    default:
      return boost::filesystem::exists(get_sys_path());
  }
}
Ejemplo n.º 2
0
uint64_t
Pathname::mtime() const
{
    return System::get_mtime(get_sys_path());
}
Ejemplo n.º 3
0
bool
Pathname::exist() const
{
    return System::exist(get_sys_path());
}