I put this script in an IIs4 server (configure to run perl script) and use an internet explorer 4 to execute this script, I put the test.txt file in the script directory but it return always "file does not exist". When i put the test.txt file in the home directoty of the web site (d:\data\ it return "file test.txt exist". I don't want to use a relative path in the syntax, how can i do that, is it something to configure on my web site or something to add in my code ?<br><br>there is the script:<br><br><br><br>use CGI_Lite;<br><br>#-------#<br># Param #<br>#-------#<br><br><br>#------#<br># Main #<br>#------#<br><br><br>print "HTTP/1.0 200 OK\r\n" if $ENV{PERLXS} eq "PerlIS";<br><br> <br># Create HTML Page<br>print "Content-Type: text/html\n\n";<br><br><br>if ( -e "test.txt" ) {<br>print<<END_OF_PAGE;<br> file test.txt exists<br>END_OF_PAGE<br>} else {<br>print<<END_OF_PAGE;<br> file test.txt DOES NOT EXISTS<br>END_OF_PAGE<br>}<br><br>