09/07/01 21:18:37 jICvP1le0
>>858
gci -r -force c:\ | ? {$_.Attributes -band [IO.FileAttributes]::Compressed }
いらん世話だけど目的のファイルのあるフォルダを一覧表示したりエクスプローラで開きたいなら
gci -r -force c:\ | ? {$_.Attributes -band [IO.FileAttributes]::Compressed } | group DirectoryName | % { $_.Name }
とか
gci -r -force c:\ | ? {$_.Attributes -band [IO.FileAttributes]::Compressed } | group DirectoryName | % { explorer $_.Name }