/**
  * clean and remove unwanted slash of a path
  *
  * @param string $path
  * @return string path
  */
 public function cleanPath($path)
 {
     $_path = Expressodriver_Backend_Storage_Abstract::normalizePath($path);
     // remove leading slash
     return substr($_path, 1);
 }