If I do simply
dirInfoObj.GetFiles("*.jpg")
, it will return the 2 jpg's I have there. But if I try and get both jpg's and png's, like
dirInfoObj.GetFiles("*.jpg,*.png")
, it won't return anything.
Am I doing something wrong? Thanks!
|
If I do simply
, it will return the 2 jpg's I have there. But if I try and get both jpg's and png's, like
, it won't return anything. Am I doing something wrong? Thanks!
| |||
|
feedback
|
|
There is nothing in the documentation for GetFiles that indicates that it supports usage of the , character like you mean it. If you are using LINQ, you could do something like:
If you need | |||||
feedback
|
|
The MSDN entry on GetFiles http://msdn.microsoft.com/en-us/library/8he88b63.aspx states how it can be used. It does not support a comma operator for multiple extensions. | |||||
feedback
|