File Directory Php



File/Backup management screen



$file_dir="files";
function place($path)
{
echo "
File/backup upload

This is an area where you can upload and manage your files for school.
To upload the file click browse for the image in your computer and press upload.






















   File:    






";
}
function place_bottom($path)
{
echo "
Directory Create

This is an area where you can create a directory.
To create one you type the name in the field and push create.























   Create directory:    






";
} // einde place_bottom()
function pics_onsite($path,$DOCUMENT_ROOT,$subdir)
{
global $file_dir;
if (!chdir($path))
{
echo "Error: directory: $path not found....";
}
$handle=opendir('.');
$count=0;
$list= "

";
$directory= "

";
if (ereg_replace("$DOCUMENT_ROOT/$file_dir","",$path)!="")
{
$subdir=1;
}
else
{
$subdir=0;
}
while (($file = readdir($handle))!==false)
{
if (($file != ".") && ($file != ".."))
{
if (is_dir($file))
{
$directory.="|  $file  |";
}
if (is_file($file))
{
$file_del=ereg_replace(" ","_",$file);
$list.="  [delete]   $file  
";
$count++;
if ($count==10){$list.="

"; $count=0;}
$wel=1;
}
}
}
if (!$wel){$list.="
No files in this directory try another
";}
$list.="
";
if ($subdir){$directory.="|  Back  |";}
$directory.="
";
echo "

Carefull with the delete function, it wil delete it all (no control).

";
if (ereg_replace("$DOCUMENT_ROOT/$file_dir","",$path)!="")
{
echo "";
}
else
{
echo "";
}
echo "
















You are in directory: " . ereg_replace("$DOCUMENT_ROOT/$file_dir","",$path) ."
  [delete_DIR]
Below you will view list of existing files.
$directory
$list


";
} // einde pics_onsite()
function delete($file)
{
global $message,$path;
if (file_exists($file))
{
chmod($file,0777);
if (is_dir($file))
{
$handle = opendir($file);
while ($filename = readdir($handle))
{
if ($filename != "." && $filename != "..")
{
delete ($file."/".$filename);
}
}
closedir($handle);
if (rmdir($file)){$message.="Directory: " . ereg_replace("$path","",$file) .", deleted
";}
}
else
{
if (unlink($file)){$message.="File: " . ereg_replace("$path","",$file) .", deleted
";}
}
}
} // einde delete($file)
if (!$path)
{
$path="$DOCUMENT_ROOT/$file_dir";
}
switch ($action)
{
case 1:
$path="$path/$create_dir";
mkdir("$path", 0777);
break;
case 2:
$subdir=0;
break;
case 3:
$path="$change_path";
$subdir=1;
break;
case 4:
$message="



";
IF (@is_file("$path/$file"))
{
@unlink ("$path/$file");
}
ELSE
{
$file=ereg_replace("_"," ",$file);
IF (is_file("$path/$file"))
{
unlink ("$path/$file") or die ("error: $path/$file");
}
}
break;
case 5:
$doel="$path/$uploadfile_name";
IF (!copy ($uploadfile,$doel))
{
echo "Error copying: ($uploadfile) to: ($doel)";
}
break;
case 6:
$message="



";
delete($del_path);
$message.="
";
break;
}
echo "








"; place($path); echo "
"; place_bottom($path); echo "
"; pics_onsite($path,$DOCUMENT_ROOT,$subdir); echo "

$message

";
?>