The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Sweet::Home - Dir, File, HomeDir, and other sweet classes

CPAN version Build Status

SYNOPSIS

    use Sweet::Dir;

    my $dir = Sweet::Dir->new(path => '/path/to/mydir');

    $dir->is_a_directory || $dir->create;

    my $dir2 = $dir->sub_dir('foo');

    $dir2->create;

    my $file = $dir2->file('bar');

DESCRIPTION

Nothing is better than feel at home. Where is the home? The home is where I can feel comfortable (cit. Jovanotti).

This package provides a set of features to make you feel comfortable when working with files and folders.

It is just syntactic sugar on top of packages like 'File::Basename', 'File::Copy', 'File::HomeDir', 'File::Path', 'File::Remove', 'File::Spec', etc.

CLASSES

Sweet::Dir
Sweet::File
Sweet::HomeDir

COPYRIGHT AND LICENSE

    This software is copyright (c) 2014 by G. Casati.

    This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.