use Win32::API; my $GetWindowsDirectory = new Win32::API( "KERNEL32","GetWindowsDirectoryA","PN","N" ); sub GetWindowsDirectory { my $buffer = "\0" x 255; $GetWindowsDirectory->Call($buffer,length $buffer); $buffer =~ tr/\0//d; return $buffer; }; print GetWindowsDirectory(); #### perl -MHTTP::Daemon -MHTTP::Response -MLWP::Simple -e ' ; # The $d = new HTTP::Daemon and fork and getprint $d->url and exit;#spider ($c = $d->accept())->get_request(); $c->send_response( new #in the HTTP::Response(200,$_,$_,qq(Just another Perl hacker\n))); ' # web