The wordy approach
use Fcntl q' :mode ';
use Win32::Unicode::Native;
use Data::Dump;
my $filename = shift;
my @f = my($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
$atime,$mtime,$ctime,$blksize,$blocks)
= stat($filename);
dd \@f, S_ISDIR( $mode ), S_ISREG($mode);
Less wordy
#!/usr/bin/perl --
use strict; use warnings;
use Data::Dump;
use File::stat();
use Win32::Unicode::Native; # stat is statW, open is openW, ...
for my $filename ( @ARGV ){
my $stat_obj = File::stat::populate( stat( $filename ) );
dd $filename, $stat_obj, { isdir => -d $stat_obj, isfile => -f $st
+at_obj };
}
__END__
$ perl win32.unicode.stat.utf8.pl . win32.unicode.stat.utf8.pl
(
".",
bless([3, 0, 16895, 1, 0, 0, 3, 0, 1344244307, 1344244307, 115650180
+3, "", ""], "File::stat"),
{ isdir => 1, isfile => "" },
)
(
"win32.unicode.stat.utf8.pl",
bless([3, 0, 33206, 1, 0, 0, 3, 444, 1344244390, 1344244390, 1344244
+307, "", ""], "File::stat"),
{ isdir => "", isfile => 1 },
)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.