Channel9Downloader.Entities.DownloadItem.OnOpenInExplorer C# (CSharp) 메소드

OnOpenInExplorer() 개인적인 메소드

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

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