
-----------------------------------
cwarrior
Thu Nov 04, 2010 8:26 pm

Perl Deleting image
-----------------------------------
Hi,

so I'm trying to delete an image from a directory within a perl cgi script 

I am using the following code and even though I don't get any errors it just wont delete the images from the given directory

[code]
my @files = param('fileName');

foreach (@files)
{
chomp($_);
my $filetodelete = '/uploads/'. $_;
unlink ($filetodelete);
}
 [/code]

Please can somebody help me with this, I would really appreciate it.

-----------------------------------
cwarrior
Mon Nov 08, 2010 12:12 pm

RE:Perl Deleting image
-----------------------------------
I will make love to anyone who helps me with this.
