Directory.GetFiles got other not related files
Hi all,
I coded the following:
string pattern = "*" + "05" + "*.tif";
string[] files = Directory.GetFiles(searchPath, pattern);
But the returned array stored:
TEST-505.tif
TEST-480.tif
TEST-405.tif
TEST-400.tif
Please help !!!!
|