Open a folder using Process.Start

后端 未结 14 2288
南笙
南笙 2020-11-30 22:56

I saw the other topic and I\'m having another problem. The process is starting (saw at task manager) but the folder is not opening on my screen. What\'s wrong?



        
14条回答
  •  情深已故
    2020-11-30 23:15

    You're escaping the backslash when the at sign does that for you.

    System.Diagnostics.Process.Start("explorer.exe",@"c:\teste");
    

提交回复
热议问题