View Issue Details

IDProjectCategoryView StatusLast Update
0002955FSiMX6F3Spublic2016-05-24 14:53
Reporterderksen Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product VersionV2.00 
Target VersionV2.10Fixed in VersionV2.10 
Summary0002955: Improve file search
DescriptionSearch string like "\dir\filena*" to match against the names of files doesn't work.
Steps To ReproduceCreate directory "\\FFSDISK\\Program Files\\ADITUS.Speedy.WindowsCE" and add some files like "log4netcf.vs2008.dll".
Additional InformationC# 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 Version2.11
Fixed Driver Version2.12

Activities

There are no notes attached to this issue.