X-Git-Url: http://git.home-dn.net/?p=manu%2Fsuphp.git;a=blobdiff_plain;f=src%2FFile.cpp;h=6c6d303d4b4d548c31539351f5b63cb220656ee2;hp=b0b20c251583588edbb491b7026cbf938b3abb53;hb=15131cc4552b38de0638fa84164e509b05bb6c11;hpb=aec8b88e8222617959b869d62d7801642138cf7a diff --git a/src/File.cpp b/src/File.cpp index b0b20c2..6c6d303 100644 --- a/src/File.cpp +++ b/src/File.cpp @@ -57,9 +57,6 @@ std::string suPHP::File::getRealPath() const throw (SystemException) { File suPHP::File::getParentDirectory() const { std::string path = this->getPath(); path = path.substr(0, path.rfind('/')); - if (path.length() == 0) { - path = "/"; - } return File(path); } @@ -107,7 +104,3 @@ UserInfo suPHP::File::getUser() const throw (SystemException) { GroupInfo suPHP::File::getGroup() const throw (SystemException) { return API_Helper::getSystemAPI().File_getGroup(*this); } - -bool suPHP::File::isSymlink() const throw (SystemException) { - return API_Helper::getSystemAPI().File_isSymlink(*this); -}