Re: Name of IF style

2007-02-05 Thread David 'Sniper' Rigaudiere
UltraEdit. Don't think they do thator do they? hi, - pod comment =pod [code here] =cut - UEdit column comment select your code to comment ALT+C (column edit) type # and spaces as you like it ++ David Sniper Rigaudiere ___ Perl-Win32-Users

RE: 'which' functionality in Perl

2003-09-29 Thread David 'Sniper' Rigaudiere
How would I determine if a file existed in a directory in the PATH environment variable on a Windows box with Perl. If the file exists I want to return the full path to the file. try this http://www.perl.com/language/ppt/src/which/index.html David Sniper Rigaudiere

RE: Q* how does one determine the owner of a file?

2001-03-14 Thread David \Sniper\ Rigaudiere
You can use the Win32::Perms Module by Dave Roth, you can get it at http://www.roth.net/perl/perms/ example : === use Win32::Perms; use strict; my $F = new Win32::Perms('c:\\toto.txt'); my $Owner = $F-Owner(); print $Owner; $F-Close(); A+ David "Sniper" Rigaudiere Paris Perl