I want to exclude all directories from my search in PowerShell. Both FileInfo and DirectoryInfo contain Attributtes property that seems to be exactly what I want, but I wasn't able to find out how to filter based on it. Both

ls | ? { $_.Attributes -ne 'Direcory' }
ls | ? { $_.Attributes -notcontains 'Direcory' }

didn't work. How can I do this?

link|improve this question

Side note: It'd be "Directory". Then both actually work for directories which do not have any other attributes set (such as ReparsePoint). – Joey Aug 8 '09 at 12:04
Yeah, you're right. Such stupid mistake. – svick Aug 8 '09 at 12:15
feedback

4 Answers

up vote 12 down vote accepted

You can use the PSIsContainer property:

gci | ? { !$_.PSIsContainer }

Your approach would work as well, but would have to look like this:

gci | ? { !($_.Attributes -band [IO.FileAttributes]::Directory) }

as the attributes are an enum and a bitmask.

Or, for your other approach:

gci | ? { "$($_.Attributes)" -notmatch "Directory" }

This will cause the attributes to be converted to a string (which may look like "Directory, ReparsePoint"), and on a string you can use the -notmatch operator.

link|improve this answer
feedback

You can also filter out directories by looking at their type directly:

ls | ?{$_.GetType() -ne [System.IO.DirectoryInfo]}

Directories are returned by get-childitem (or ls or dir) of type System.IO.DirectoryInfo, and files are of type System.IO.FileInfo. When using the types as literals in Powershell you need to put them in brackets.

link|improve this answer
2  
You can use the -is operator to do this, by the way. So it can be shortened to: gci | ? {$_ -is [IO.FileInfo]} – Joey Aug 9 '09 at 9:01
1  
Of course you are limited to the File System Provider with this method whereas PsIsContainer should work with any provider where the concept of containers exists. – EBGreen Aug 9 '09 at 15:29
Should have thought of the -is operator. And yes, FileInfo will only work for File Systems. – Anton I. Sipos Aug 13 '09 at 19:19
feedback

Exclude directories in PowerShell:

Get-ChildItem | Where-Object {$_ -isnot [IO.DirectoryInfo]}

Or it's terse, but harder to read version:

gci | ? {$_ -isnot [io.directoryinfo]}

Credit goes to @Joey for his insightful comment using the -is operator :)

However

Technically, I prefer including only Files or only Directories since excluding can lead to unexpected results as Get-ChildItem can return more than just files and directories :)

Include just Files:

Get-ChildItem | Where-Object {$_ -is [IO.FileInfo]}

Or:

gci | ? {$_ -is [io.fileinfo]}

Include just Directories:

Get-ChildItem | Where-Object {$_ -is [IO.DirectoryInfo]}

Or:

gci | ? {$_ -is [io.directoryinfo]}
link|improve this answer
feedback

I use

Get-ChildItem -include *.*

[edit] but it does not always work, apparently, (see comments) so use at your own risk. [edit]

The opposite is needed more often, though. (see http://stackoverflow.com/questions/1330648/powershell-analog-to-dir-ad-win-or-ls-d-bash/2526109#2526109)

Come to think about it, I do not really understand why it works...

link|improve this answer
that doesn't do anything for me – svick Apr 30 '10 at 12:35
and if i do it the other way around (-exclude *.*), it lists also files without extension – svick Apr 30 '10 at 12:37
Hmm, it did work for fatcat1111 in the original question. Looks like there is a hidden setting that is different for different computers. PS version maybe? It would be nice to hear for an expert. – buti-oxa Apr 30 '10 at 18:15
For one thing, this assumes that you have no directories with a '.' in their name. – Timbo Mar 30 at 21:18
Directories can have extensions. This is a problematic answer because it will work most of the time. – Alain O'Dea Apr 1 at 21:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.