摘要:
C# 实现:private void OpenFolderAndSelectFile(String fileFullName){ System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo("Explorer.exe"); psi.Arguments = "/e,/select," + fileFullName; System.Diagnostics.Process.Start(psi);}参考:Windows 资源管理器参数的用法。Explorer 阅读全文
posted @ 2013-01-23 16:40
StupidsCat
阅读(16040)
评论(0)
推荐(0)