Help for this page

Select Code to Download


  1. or download this
        ${^FS_ENCODING}{foo} = 'A';
        ${^FS_ENCODING}{foo}{bar} = 'B';
    ...
    
    
        open my $fh, ">", "/foo/bar/baz/quux/blah/hello.txt";
    
  2. or download this
        open my $fh, ">", join("/",
            ""
    ...
            encode(detect_encoding("/foo/bar/baz/quux"), "blah"),
            encode(detect_encoding("/foo/bar/baz/quux/blah"), "hello.txt")
    +,
        );