HomeDir
NAME
File::HomeDir - Find your home and other directories on any platform
DESCRIPTION
This is a Perl 6 port of File::HomeDir. File::HomeDir is a module for locating the directories that are "owned" by a user (typicaly your user) and to solve the various issues that arise trying to find them consistently across a wide variety of platforms.
The end result is a single API that can find your resources on any platform, making it relatively trivial to create Perl software that works elegantly and correctly no matter where you run it.
SYNOPSIS
use v6;
use File::HomeDir;
say File::HomeDir.my-home;
say File::HomeDir.my-desktop;
say File::HomeDir.my-documents;
say File::HomeDir.my-pictures;
say File::HomeDir.my-videos;
COPYRIGHT AND LICENSE
Copyright (c) 2016 Ahmad M. Zawawi under the MIT License