lcars/admin/uploadify-check-exists.php
kjodle 9ff50bd47d LCARS GetSimple Template
LCARS is a template for the GetSimple CMS that mimics the monitor
appearance in the television series Star Trek: The Next Generation
2015-10-18 12:03:50 -04:00

22 lines
388 B
PHP

<?php
/**
* Upload Folder Checker Ajax
*
* Return true if the file exists
*
* @author Ronnie Garcia
* @package GetSimple
* @subpackage Files
*/
include('inc/common.php');
login_cookie_check();
$path = (isset($_GET['path'])) ? $_GET['path'] . "/" : "";
$name = clean_img_name($_POST['filename']);
if (file_exists(GSDATAUPLOADPATH .$path . $name)) {
echo 1;
} else {
echo 0;
}