Adam Kennedy > File-HomeDir > File::HomeDir::Unix

Download:
File-HomeDir-0.88.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  4
Open  4
View Bugs
Report a bug
Module Version: 0.88   Source  

NAME ^

File::HomeDir::Unix - find your home and other directories, on Unix

DESCRIPTION ^

This module provides implementations for determining common user directories. In normal usage this module will always be used via File::HomeDir.

SYNOPSIS ^

  use File::HomeDir;
  
  # Find directories for the current user
  $home    = File::HomeDir->my_home;        # /home/mylogin

  $desktop = File::HomeDir->my_desktop;     # All of these will... 
  $docs    = File::HomeDir->my_documents;   # ...default to home...
  $music   = File::HomeDir->my_music;       # ...directory at the...
  $pics    = File::HomeDir->my_pictures;    # ...moment.
  $videos  = File::HomeDir->my_videos;      #
  $data    = File::HomeDir->my_data;        # 

TODO ^