http://www.perlmonks.org?node_id=541882


in reply to Launch Windows Explorer from Windows DOS prompt

no need to read the directory twice .. few options:

Replies are listed 'Best First'.
Re^2: Launch Windows Explorer from Windows DOS prompt
by larryl (Monk) on Apr 14, 2006 at 21:14 UTC

    I combined jimbojones' original script with the ideas from davidrw, and then added a command-line option so you could specify a path. So for example you can set up desktop shortcuts to open an explorer window pointing to things like "C:\Apache\conf".

    I had to change the -d test in the sort specification from
       -d $b <=> -d $a
    to
       (-d $b ? 1 : 0) <=> (-d $a ? 1 : 0)
    because I was getting errors messages about invalid numeric comparison...

    use warnings; use strict; use Cwd; use File::Spec (); use IO::Dir; my $path = shift || cwd(); $path = File::Spec->canonpath($path); if (-d $path) { chdir $path or die "Can't chdir to \"$path\"\n"; my $dir_handle = IO::Dir->new($path) or die "Can't open \"$path\"\n"; my @items = sort { (-d $b ? 1 : 0) <=> (-d $a ? 1 : 0) || $a cmp $ +b } grep { ! /^[.][.]?$/ } $dir_handle->read; undef $dir_handle; $path = File::Spec->catfile($path, $items[0] || '.'); } elsif (! -f $path) { die "Can't find \"$path\"\n"; } exec 'explorer.exe /e,/select,' . $path; # launch Explorer exit;


    Larry

      nice ..

      yeah, i guess that would generate warnings since -X returns 1 or undef ..could save a few characters with -d $b || 0 <=> -d $a || 0 Another alternative would be to do a Schwartzian Transform (especially if there might be a large number of directories).