Channel9Downloader.Entities.DownloadItem.OnOpenInExplorer C# (CSharp) Method

OnOpenInExplorer() private method

Opens the item in the windows explorer.
private OnOpenInExplorer ( ) : void
return void
        private void OnOpenInExplorer()
        {
            if (!File.Exists(LocalFilename))
            {
                return;
            }

            var arguments = string.Format("/select,\"{0}\"", LocalFilename);
            Process.Start("explorer.exe", arguments);
        }