View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002955 | FSiMX6 | F3S | public | 2016-05-24 14:53 | 2016-05-24 14:53 |
Reporter | derksen | Assigned To | |||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | V2.00 | ||||
Target Version | V2.10 | Fixed in Version | V2.10 | ||
Summary | 0002955: Improve file search | ||||
Description | Search string like "\dir\filena*" to match against the names of files doesn't work. | ||||
Steps To Reproduce | Create directory "\\FFSDISK\\Program Files\\ADITUS.Speedy.WindowsCE" and add some files like "log4netcf.vs2008.dll". | ||||
Additional Information | C# example from company aditus: string path = "\\FFSDISK\\Program Files\\ADITUS.Speedy.WindowsCE"; string pattern = "log4*"; if (Directory.Exists(path)) { string[] fileEntries = Directory.GetFiles(path, pattern); if(fileEntries.Length != 0) foreach (string fileName in fileEntries) Console.WriteLine("Processed file '{0}'.", fileName); else Console.WriteLine("No files in directory '{0}' can be found.", path); } else { Console.WriteLine("{0} is not a valid file or directory.", path); } | ||||
Forum Link | |||||
Found Driver Version | 2.11 | ||||
Fixed Driver Version | 2.12 | ||||