Hi all…
I’m working with files… the write_file works fine.. but.. how can I delete a file?
I try with the
$file_delete = '/var/www/xmlrpc/listas/'.$nombre_lista.".txt";
delete_files($file_delete);
but does not work… so.. I try with the unlink
$file_delete = '/var/www/xmlrpc/listas/'.$nombre_lista.".txt";
unlink($file_delete);
and does not work either.. the file was created by the write_file method of the file helper…
any ideas?
Bye ![]()
