Help for this page

Select Code to Download


  1. or download this
    my $path = "Filer/$filename";
    
  2. or download this
    use File::Spec;
    my $path = File::Spec->catfile('Filer', $filename");
    
  3. or download this
    my @paths = path("Filer")->children( qr/\.txt\z/ );
    # now do something with each element of @paths