[求助]如何在Perl中调用数据文件?

[求助]如何在Perl中调用数据文件?

[求助]如何在Perl中调用数据文件?
我的操作系统是Windows2000, 现在装好了Apache,把所以相关网页文件放在 C:\Apache\Apache2\cgi-bin\ 下面,并且可以运行简单的网页了,但是不能读入数据文件的内容. 我用了下面的数据文件的路径都不成功,请求大家帮助,谢谢!

1. my($tester_status_file) = "/localhost/cgi-bin/data_name";
2. my($tester_status_file) = "c:/apache/apache2/cgi-bin/data_name";
3. .....
my($tester_status_file).
my($tester_status_file) ="../cgi-bin/data_name";
是 my($tester_status_fil.
是 my($tester_status_file) ="c:/apache/apache2/cgi-bin/data_name"; 吗? 试了一下不行唉????
可以了,my($tester_status.
可以了,my($tester_status_file) ="c:/apache/apache2/cgi-bin/data_name"; 原来调用时的名字搞错. 谢了!
最好不要用绝对路径,这样.
最好不要用绝对路径,这样移植性不好的。