I have code for to search file and how to search any files with multiple extension of file searching.Like Office file {docx,pptx,xlsx,pdf} , media file{mp3,mp4,mkv,avi} , image file {jpg,png}. Thanks
Code :
public void SearchFile(string folder, string KeyWord, DataGridView TableName, ref Label Result, ref long Count)
{
string[] row;
foreach (string file in Directory.GetFiles(folder, "*" + KeyWord + "*doc")) // <== Multiple Extension Searching
{
FileInfo fi = new FileInfo(file);
double Lenght = fi.Length / 1024;
row = new string[] { fi.Name, Lenght.ToString() + " KB", fi.LastAccessTime.Year.ToString(), fi.FullName };
TableName.Rows.Add(row);
number += 1;
}
foreach (string subDir in Directory.GetDirectories(folder))
{
try
{
SearchFile(subDir , KeyWord, TableName, ref Result, ref Count);
}
catch (UnauthorizedAccessException) { }
}
Count = Number;
Result.Text = "File Keyword '" + KeyWord + "', Not Found " + number.ToString() + " (file).";
}