Help for this page

Select Code to Download


  1. or download this
    use ExtUtils::MakeMaker;
    use File::ShareDir::Install;
    ...
        install_share dist => 'share';
        ##also tried this:
        install_share module => 'My::Module', 'share';
    
  2. or download this
    use File::ShareDir ':ALL';
    File::ShareDir::dist_file('My-Distribution', 'file.po');
    ...
    File::ShareDir::dist_file('My-Distribution', 'share/file.po');
    #and later tried this
    File::ShareDir::module_file("My::Module","file.po");