in reply to size of all subfolder from a network location

Can you suggest something?
#!perl use strict; my $path = "\\\\domain.local\\users\\"; for ( qx(dir /S $path) ){ print $_ if /Directory of|File\(s\)/; }
poj