Answer the question
In order to leave comments, you need to log in
How to delete files from hosting by list?
There is a list of file addresses (about 5 thousand lines), each with a new line.
You need to remove all files from this list. Manually 30 files per hour, so not cool. There are options through the console or something else?
Answer the question
In order to leave comments, you need to log in
$filearray = array(
'www/file/index1.php',
);
foreach($filearray as $file){
unlink($file);
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question