Jan 12, 2007 #1 sun9 Programmer Joined Dec 13, 2006 Messages 31 Location US Is there a way to find out my current path in perl?
Jan 12, 2007 #2 WinblowsME Technical User Joined Nov 6, 2006 Messages 235 Location US Code: use Cwd; $curr_dir = getcwd; print "$curr_dir\n"; Upvote 0 Downvote