While navigating to the folder through Process.Start(folderPath), I wish to see the newly created files as highlighted/Selected. Everytime I open the instance of my wpf application, there are some Log files which get created at a specified folder path. I want to see those new created files as highlighted/Selected.
        private void ShowFolder()
        {
           //Open the folder path through Process.Start 
           //sLogFolderPath is the folder path where log files are created
           System.Diagnostics.Process.Start(sLogFolderPath);
         //When folder is opened through Process.Start, 
        //I would like to see the newly created files as highlighted.
        }
