I am using DirectoryInfo.GetDirectories() recursively to find the all the sub-directories under a given path. How ever I want to exclude the System folders and there is no clear way for that. In FindFirstFile/FindNextFile things were clearer with the attributes. Thanks in advanced.
|
feedback
|
|
@rslite is right, .NET doesn't give such filtering out-of-box, but it's not hard to implement:
MSDN links: | |||
|
feedback
|
|
This is a great example of a scenario where Linq and extension methods make things really clean and easy.
If you're building a .net v2 application, then you can use LinqBridge to give you access to all the cool Linq to objects methods (like Where() and ToArray() above). Edit In .net v4 you'd use EnumerateDirectories instead of GetDirectories which allows you to iterate over the results without building an array in memory first.
| |||||||
feedback
|
|
You'd probably have to loop through the results and reject those with the attributes that you don't want (use the Attributes property). | |||
|
feedback
|