由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - perl 文件夹搜索路径一问
相关主题
请教MS的高手一个shell的问题如何绕开/etc/ld.so.conf中的路径,先搜索自己指定的.so路径?
【请教】Linux里面Set, Env, Stty有什么区别? (转载)请教一个gcc include path 的问题
Android C/C++ native calls Java APIs (转载)问题请教
how to avoid security holes for perl CGI code using checkbo (转载)perl: how to get the filename from the full path name
有用 Python Suds 的大拿吗请教一个弱弱问题,关于#include的pathname
perl cgi中调用C可执行程序为什么在html中不显示? (转载)请教,关于g++ -l的问题
eval (expr, envir=, enclose=) 求解答[合集] regular expression for whitespace in path
data structure for set of path in a graph#!/usr/bin/envperl是什么? (转载)
相关话题的讨论汇总
话题: dir1话题: path话题: path1话题: env话题: path2
进入Programming版参与讨论
1 (共1页)
g******1
发帖数: 295
1
在path1下有个文件夹叫.dir1, 我的perl script myscript.pl在path2下,
在myscript.pl中我想打开.dir1,
opendir DOT, '.dir1' or die("Can't open .dir1 for scanning.\n");
但在path2下运行myscript.pl始终显示"Can't open .dir1 for scanning.\n"
在myscript.pl中看$ENV{PATH}中已经有path1
print "Current PATH is: ", $ENV{PATH}, "\n";
请问是什么原因?谢谢。
w******p
发帖数: 166
2
opendir doesn't consider PATH.
you can use either the full path to dir1, or use the FinBin module to find
where your binary is, and use relative pathing to get to dir1
g******1
发帖数: 295
3
thanks

【在 w******p 的大作中提到】
: opendir doesn't consider PATH.
: you can use either the full path to dir1, or use the FinBin module to find
: where your binary is, and use relative pathing to get to dir1

1 (共1页)
进入Programming版参与讨论
相关主题
#!/usr/bin/envperl是什么? (转载)有用 Python Suds 的大拿吗
sscanf problem in MSVC 7perl cgi中调用C可执行程序为什么在html中不显示? (转载)
菜鸟问一个C++的问题eval (expr, envir=, enclose=) 求解答
问一个link的问题data structure for set of path in a graph
请教MS的高手一个shell的问题如何绕开/etc/ld.so.conf中的路径,先搜索自己指定的.so路径?
【请教】Linux里面Set, Env, Stty有什么区别? (转载)请教一个gcc include path 的问题
Android C/C++ native calls Java APIs (转载)问题请教
how to avoid security holes for perl CGI code using checkbo (转载)perl: how to get the filename from the full path name
相关话题的讨论汇总
话题: dir1话题: path话题: path1话题: env话题: path2