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] );

Examine what is said, not who speaks.
1) When a distinguished but elderly scientist states that something is possible, he is almost certainly right. When he states that something is impossible, he is very probably wrong.
2) The only way of discovering the limits of the possible is to venture a little way past them into the impossible
3) Any sufficiently advanced technology is indistinguishable from magic.
Arthur C. Clarke.