PDA

View Full Version : Deleting a file from a folder


jamyam
1-9-05, 09:41 PM
Hi guys,

I was wondering if there was a way to delete a specific file from a folder in my FTP if I knew the name of the file. The directory contains "random images" for my visitors and because it has more than 5000 files, not all files are displayed via FTP programs and so I can't find the file to delete it.

Any solutions would be awesome. Thanks!

B&T
1-9-05, 09:48 PM
How about a simple php script

<?php
$filename="/www/u/user/htdocs/filename.ext";
if( file_exists($filename) ) unlink("$filename");
?>

jamyam
1-10-05, 12:54 AM
Thanks! :)