Skip to content
Advertisement

php delete a single file in directory

I’ve got the php list directory script from this link http://www.gaijin.at/en/scrphpfilelist.php. How do I delete a single file from the directoy? I tried unlink, but it deleted all the files from that directory. this the short code what i got from the link!

JavaScript

the list directory folder call : backup.
in the unlink($FileLink), when i hover the link has change to another folder to admin folder?

Advertisement

Answer

unlink('path_to_filename'); will delete one file at a time.

If your whole files from directory is gone means you listed all files and deleted one by one in a loop.

Well you cannot de delete in the same page. You have to do with other page. create a page called deletepage.php which will contain script to delete and link to that page with ‘file’ as parameter.

JavaScript

On the deletepage.php

JavaScript

If you don’t want to navigate, then use ajax to make elegant.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement