| Path-Resolver documentation | view source | Contained in the Path-Resolver distribution. |
Path::Resolver::Resolver::FileSystem - find files in the filesystem
version 3.100451
my $resolver = Path::Resolver::Resolver::FileSystem->new({
root => '/etc/myapp_config',
});
my $simple_entity = $resolver->entity_at('foo/bar.txt');
This resolver looks for files on disk under the given root directory.
This resolver does the Path::Resolver::Role::FileResolver role, meaning its native type is Path::Resolver::Types::AbsFilePath and it has a default converter to convert to Path::Resolver::SimpleEntity.
This is the root on the filesystem under which to look. If it is relative, it will be resolved to an absolute path when the resolver is instantiated.
Ricardo Signes <rjbs@cpan.org>
This software is copyright (c) 2010 by Ricardo Signes.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Path-Resolver documentation | view source | Contained in the Path-Resolver distribution. |