in reply to how to find properties of office documents at windows
use strict; use warnings; my @documents = all_office_documents_at_my_PC(); for my $document (@documents) { my %value_of = get_properties_of($document); for my $key (sort keys %value_of) { printf "%-20s%s\n", $key, $value_of{$key}; } }
Now you just have to implement
andsub all_office_documents_at_my_PC
.sub get_properties_of
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how to find properties of office documents at windows
by Discipulus (Canon) on Apr 07, 2008 at 08:49 UTC |