Приложение, которое ищет файлы по заданному шаблону имени файла и по заданной фразе для внутреннего содержимого файла.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
namespace fileFinder
|
|
|
|
{
|
|
|
|
class ProgressReportModel
|
|
|
|
{
|
|
|
|
public int matchingFiles { get; set; }
|
|
|
|
public int processedFiles { get; set; }
|
|
|
|
public int totalNumOfFiles { get; set; }
|
|
|
|
public string currentFileUrl { get; set; }
|
|
|
|
public TreeNode currentTreeNode { get; set; }
|
|
|
|
}
|
|
|
|
}
|