I'm using 'dir' in an attempt to glob a filespec and get Unicode filenames

I see, that does make it a bit more complicated. I used Win32::LongPath in the following, plus Text::Glob since you mentioned globs, but of course using a regex directly would be easier.

use warnings;
use strict;
use utf8;
use Text::Glob 'glob_to_regex';
use Win32::LongPath;
use File::Spec::Functions qw/no_upwards catfile/;
use IPC::Run3 'run3';
use Data::Dump;

my $glob = glob_to_regex('*Перл*');
my $dir = "C:\\Temp\\testuni";

my $dh = Win32::LongPath->new;
$dh->opendirL($dir) or die "unable to open $dir: $^E";
for my $file ( grep {/$glob/} no_upwards $dh->readdirL ) {
	my $path = catfile($dir, $file);
	my $sp = shortpathL($path);
	run3 ['hex', $sp], undef, \my $out;
	dd $path, $sp, $out;
}
$dh->closedirL;
Is 'hex' a command in your example?

I happened to have C:\Windows\hex.exe lying around, a simple hex dump tool from here.

Is there a reason that you used short pathnames?

In my first example, that's just how Path::Class returned them; in my example above I used them because it appeared to be easier to pass the pathname to the external command that way.

I'm using robocopy /l to get the total size of a folder, including subfolders. It's supposed to be a fast way to do that.

I tried running robocopy, and at least on my system the report it outputs doesn't mention file sizes anywhere. You might also want to look at e.g. the Perl version of du to see the algorithm used there.

I tried using run3, but I don't understand its rules and haven't got it working yet.

Again, it would be best if you can show an SSCCE.


In reply to Re^4: How to pass a folder name to Windows external commands? by haukex
in thread How to pass a folder name to Windows external commands? by freonpsandoz

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.