Hello All,
I have Perl code that looks like the following. $file is pointing to a directory on the C: drive that has 2 text files in it (let's say text_file_name1.txt and text_file_name2.txt).The lines of code to print out the names of the text files in the directory are:
[HTML]foreach $file(@result_files)
{
print "$file\n";
}[/HTML]
Can someone tell me why the print out gives me this:
C:/%USERPROFILE$
C:/text_file_name1.txt
C:/text_file_name2.txt
What is %USERPROFILE$? And why is it showing up???
Terra