Help for this page

Select Code to Download


  1. or download this
    
    # ok
    ...
    # also ok - in single quoted strings only sequences \' and \\ are spec
    +ial
    my $path = 'dir\file.txt';
    
  2. or download this
    
    use File::Spec;
    
    my $path = File::Spec->catfile(qw(dir file.txt));