NAME
File::PathInfo::Ext - metadata files, renaming, some other things on top of PathInfo
SYNOPSIS
use File::PathInfo::Ext;
my $f = new File::PathInfo::Ext('/home/myself/thisfile.pdf');
$f->meta_save({ keywords => 'salt, pepper, lemon, ginger' });
printf "keywords are: %s\n", $f->meta->{keywords};
$f->rename('thatfile.pdf');
printf "filename is now %s\n", $f->filename;
printf "keywords are still: %s\n", $f->meta->{keywords};
DESCRIPTION
This extends File::PathInfo. Added is a simple api for YAML metadata files. Also a way to rename the file, and maintain the metadata file (YAML file).
This software is still under development.
METHODS
These are added methods to the usual File::PathInfo methods.
ls() and lsa()
takes no argument returns array ref of files (and dirs and everything else). No . and .. returns undef if it's not a dir
lsa() returns absolute paths, not just filename.
lsf() and lsfa()
returns array ref of files (-f) in dir. returns undef if it's not a dir.
lsfa() returns absolute paths, not just filename.
lsd() and lsda()
returns array ref of dirs (-d) in dir. returns undef if it's not a dir.
lsda() returns absolute paths, not just filename.
meta()
takes no argument, like get_meta() returns hash ref with metadata for file.
meta_save()
takes no argument, like set_meta returns true. Saves the current metadata to disk.
meta_delete()
Takes no argument. Makes sure file does not have a meta file associated with it.
rename()
Argument is new filename. This rename makes it so if you have a meta file, it is renamed also.
$f->rename('blah') or die'cant rename';
USAGE EXAMPLES
I adore this little module. I use it a lot. Here are some examples of how to use it, and you'll see why I like it.
using meta() and meta_save()
- Example 1
-
use File::PathInfo::Ext; my $f = new File::PathInfo::Ext('/home/myself/documents/doc1.pdf'); $f->meta_save({ title => 'great title here', keywords => [qw(food spices mice cats)]});
This creates the YAML file '/home/myself/documents/.doc1.pdf.meta':
--- title: 'great title here' keywords: - food - spices - mice - cats
So if you call meta(), you get the title. This is really useful if you want to be able to simply add info to a file via vim or notepad.
- Example 2
-
What if you don't want to have the files hidden, and you want to use another extension?
use File::PathInfo; File::PathInfo::Ext::META_EXT = 'data'; File::PathInfo::Ext::META_HIDDEN = 0; my $f = new File::PathInfo('/home/myself/documents/doc1.pdf'); $f->meta_save({ title => 'great title here', keywords => [qw(food spices mice cats)]});
And then..
printf "Title for this file %s\n", $f->meta->{title};
Add some more stuff
$f->meta->{age} = 24; $f->meta->{state} = 'WY';
And save it
$f->meta_save;
To erase it
$f->meta_delete
Furthermore what if you want to rename the file without losing the metadata (which is associated by filename)
$f->rename('newname.whatever');
- Example 3
-
A more real world example. If you're a unix minion like me, you swear by the cli. So, I want to be able to edit metadata with vim for anything. Maybe I'm keeping an archive of scanned documents.. and I want to remember that file /home/docs/document1.pdf is authored by Joe, and that it's a replacement for another file. So I simply do 'vim /home/docs/.document1.pdf.meta' and enter:
--- author:joe description: this is not the original. The other one got eaten by my dog.
You can see how useful this can be if you're maintaining a client website, or a large archive of mundane data.
PROCEDURAL SUBROUTINES
None of these are exported by default.
get_meta()
argument is absolute path to a file on disk returns metadata hash if found. (YAML).
set_meta()
argument is absolute path and hash ref with metadata if the hash ref is empty, will attempt to delete existing metadata file.
does NOT check to see if the file exists.
set_meta('/home/file',{ name => 'hi', age => 4 });
Above example creates meta file '/home/file.meta' :
---
name: hi
age: 4
If you wish all metadata files to be hidden;
use File::PathInfo;
File::PathInfo::META_HIDDEN = 1;
See also: YAML
delete_meta()
argument is absolute path to file the meta is for. will delete hidden as well as non-hidden meta.
delete_meta('/home/myself/document');
Deletes /home/myself/document.meta and /home/myself/.document.meta This is just to assure a file does not have metadata anymore.
SEE ALSO
See also File::PathInfo, YAML, and File::Attributes.
PACKAGE SETTINGS
Metadata files can be hidden (prepended by period).
File::PathInfo::Ext::META_HIDDEN = 1;
Metadata ext, by default .meta
File::PathInfo::Ext::META_EXT = meta;
Debug
File::PathInfo::Ext::DEBUG = 1;
BUGS
Yes. No doubt. Please forwards any bug detection to author.
AUTHOR
Leo Charre leocharre at cpan dot org
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 383:
You forgot a '=back' before '=head1'