Пример #1
0
        static void Main(string[] args)
        {
            FindFile findFile = new FindFile();

            findFile.FindFileOnDisk();

            WatchText watchText = new WatchText(findFile);

            watchText.ChooseFileAndPrint();

            Archiving archiving = new Archiving(watchText);

            archiving.ArchivingFile();
            Console.ReadKey();
        }
Пример #2
0
 public Archiving(WatchText _watchText)
 {
     Console.WriteLine("You`re start archiving");
     watchText = _watchText;
 }