/** * Save the file to the specified path * @return boolean TRUE on success */ function save($path) { $wpFileSystem = MainWPUtility::getWPFilesystem(); if ($wpFileSystem != null) { $path = str_replace(MainWPUtility::getBaseDir(), '', $path); $moved = $wpFileSystem->put_contents($path, file_get_contents($_FILES['qqfile']['tmp_name'])); } else { $moved = move_uploaded_file($_FILES['qqfile']['tmp_name'], $path); } if (!$moved) { return false; } return true; }