Help for this page

Select Code to Download


  1. or download this
    my( $path, $pathLength ) = ( "\0" x 260, "\0" x 8 );
    
  2. or download this
    use constant MAX_PATH => 260;
    
    my $path       = "\0" x MAX_PATH;
    my $pathLength = pack('L', MAX_PATH);