/**
  * Move/rename file to $dstPath
  * @param string $dstPath Destination path
  */
 function move($dstPath)
 {
     $dstPath = eZDBFileHandler::cleanPath($dstPath);
     $srcPath = $this->filePath;
     eZDebugSetting::writeDebug('kernel-clustering', "dfs::fileMove( '{$srcPath}', '{$dstPath}' )");
     self::$dbbackend->_rename($srcPath, $dstPath);
     $this->metaData = null;
 }