in reply to Advice on Win32::Filetime
If you want all the information, you dont need to specify any parameters.
my @CreateTime = $filetime->Create();
will put all the values: year, month, day, hour, minute, second, into the @CreateTime0..5;
If you only want a subset of these fields, then you can select them by suppling names of those you require:
my @CreateTime = $filetime->Create( qw[hour minute second] );
|
|---|