in reply to Re: Re: CGI::Session - Problems creating session...
in thread CGI::Session - Problems creating session...
Absolute paths begin with a path separator (or drivename, depending on os, use File::Spec if you like portability -- see `perldoc perlport'), relative paths begin with a directory name (like ./foo)use Cwd; use Config; chdir $Config{archlib}; print cwd,$/; chdir 'Pod'; print cwd,$/; chdir '..'; print cwd,$/; chdir '/Pod' or warn "eek $!"; print cwd,$/; chdir '/'; print cwd,$/; __END__ C:/Perl/lib C:/Perl/lib/Pod C:/Perl/lib eek No such file or directory at - line 13. C:/Perl/lib C:/
|
MJD says you can't just make shit up and expect the computer to know what you mean, retardo! I run a Win32 PPM repository for perl 5.6x+5.8x. I take requests. ** The Third rule of perl club is a statement of fact: pod is sexy. |
|
|---|