I have a perl program that uploads data from the users computer.
On the confirm upload page I want to feed back the information to the user of which file they just uploaded.
I am successful at doing this except the output does not have any "\" in the path name.
I use
@array=split (/\\/$filepath/);
print"@array";
my output look like this.
c: directory file
no "\" exist in the output.
I know there is a simple solution please help?
On the confirm upload page I want to feed back the information to the user of which file they just uploaded.
I am successful at doing this except the output does not have any "\" in the path name.
I use
@array=split (/\\/$filepath/);
print"@array";
my output look like this.
c: directory file
no "\" exist in the output.
I know there is a simple solution please help?