How do I create then use long Windows paths from Perl?

前端 未结 5 1451
南笙
南笙 2020-12-05 15:01

I have part of a build process that creates a hideously long paths in Windows. It\'s not my fault. It\'s several directories deep, and none of the directory names are abnorm

5条回答
  •  情深已故
    2020-12-05 15:27

    Progress:

    The following script works: It writes a string to a file in a directory with a long path and it is able to read back the same string. (A successful run produces no console output). I have also made a cumbersome effort to override open.

    #!/usr/bin/perl
    
    use strict;
    use warnings;
    
    use Carp;
    use Encode qw( encode );
    use Symbol;
    
    use Win32;
    
    use Win32API::File qw(
        CreateFileW OsFHandleOpen
        FILE_GENERIC_READ FILE_GENERIC_WRITE
        OPEN_EXISTING CREATE_ALWAYS FILE_SHARE_READ
    );
    
    use Win32::API;
    use File::Spec::Functions qw(catfile);
    
    Win32::API->Import(
        Kernel32 => qq{BOOL CreateDirectoryW(LPWSTR lpPathNameW, VOID *p)}
    );
    
    my %modes = (
        '<' => {
            access => FILE_GENERIC_READ,
            create => OPEN_EXISTING,
            mode   => 'r',
        },
        '>' => {
            access => FILE_GENERIC_WRITE,
            create => CREATE_ALWAYS,
            mode   => 'w',
        },
        # and the rest ...
    );
    
    use ex::override open => sub(*;$@) {
        $_[0] = gensym;
    
        my %mode = %{ $modes{$_[1]} };
    
        my $os_fh = CreateFileW(
            encode('UCS-2le', "$_[2]\0"),
            $mode{access},
            FILE_SHARE_READ,
            [],
            $mode{create},
            0,
            [],
        ) or do {$! = $^E; return };
    
        OsFHandleOpen($_[0], $os_fh, $mode{mode}) or return;
        return 1;
    };
    
    my $path = '\\\\?\\' . Win32::GetLongPathName($ENV{TEMP});
    my @comps = ('0123456789') x 30;
    
    my $dir = mk_long_dir($path, \@comps);
    my $file = 'test.txt';
    my $str = "This is a test\n";
    
    write_test_file($dir, $file, $str);
    
    $str eq read_test_file($dir, $file) or die "Read failure\n";
    
    sub write_test_file {
        my ($dir, $file, $str) = @_,
    
        my $path = catfile $dir, $file;
    
        open my $fh, '>', $path
            or croak "Cannot open '$path':$!";
    
        print $fh $str or die "Cannot print: $!";
        close $fh or die "Cannot close: $!";
        return;
    }
    
    sub read_test_file {
        my ($dir, $file) = @_,
    
        my $path = catfile $dir, $file;
    
        open my $fh, '<', $path
            or croak "Cannot open '$path': $!";
    
        my $contents = do { local $/; <$fh> };
        close $fh or die "Cannot close: $!";
        return $contents;
    }
    
    sub mk_long_dir {
        my ($path, $comps) = @_;
    
        for my $comp ( @$comps ) {
            $path = catfile $path, $comp;
            my $ucs_path = encode('UCS-2le', "$path\0");
            CreateDirectoryW($ucs_path, undef)
                or croak "Failed to create directory: '$path': $^E";
        }
        return $path;
    }
    

    Using Win32::GetANSIPathName() with built-in open does not work: The path returned is too long.

    See edit history for failed experiments.

提交回复
热议问题