Přihlásit

Dokumentace

Coding Standarts

Zakladatel: Martin Pernica    Platí pro verzi: 1.0    Kategorie:


/**
 * @author VisionCMS team
 * @copyright 2008 - 2010
 * @version 1.0
 * @license GPL v2
 * @package VisionCMS
 *
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see http://www.gnu.org/licenses/.
 */

/**
 * Vision_File
 * 
 * @package Vision
 * @author VisionCMS team
 * @version 1.0
 * @access public
 */
class Vision_File 
{

    /*
     * @var bool 
     */
     private $opened;
 
    /** Creates new file
     * @param string $path
     * @param  bool $rewrite
     * @return string
     */
    public static function create($path, $rewrite = true) 
    {
        if (file_exists($path)) {
            if ($rewrite) {
                unlink($path);
            } else {
                throw new V_Exception_General("File '" . $path . "' is already exists");
            }
        }
 
        fopen($path, "a");
    } 
}