Mar 23, 2003 #1 Firemyst Programmer Mar 10, 2003 62 US Is there a built in perl function that'll work on both Windows and Unix, which gives me the full path to the current working directory? Thanks!
Is there a built in perl function that'll work on both Windows and Unix, which gives me the full path to the current working directory? Thanks!
Mar 23, 2003 #2 grimbys Programmer Dec 19, 2002 34 ES I don't probe it, but ... use Cwd; my $dir = getcwd; from: http://www.perldoc.com/perl5.8.0/lib/Cwd.html Upvote 0 Downvote
I don't probe it, but ... use Cwd; my $dir = getcwd; from: http://www.perldoc.com/perl5.8.0/lib/Cwd.html