Folder Options) dialog programmatically? If no, how to set \"Show hidden files and folders\"? Sorry for poor en" />
开发者

Open "Folder Options" dialog programmatically

开发者 https://www.devze.com 2022-12-23 14:27 出处:网络
开发者_开发知识库Exists any way to open \"Folder Options\" (In windows Explorer: Tools > Folder Options) dialog programmatically? If no, how to set \"Show hidden files and folders\"? Sorry for poor en
开发者_开发知识库

Exists any way to open "Folder Options" (In windows Explorer: Tools > Folder Options) dialog programmatically? If no, how to set "Show hidden files and folders"? Sorry for poor english.


This should work:

ProcessStartInfo psi = new ProcessStartInfo
   {
       FileName = "RUNDLL32.EXE",
       Arguments = "shell32.dll,Options_RunDLL 0"
   };
Process.Start(psi);

There is a quite extensive reference here: Dx21 RunDLL32.

0

精彩评论

暂无评论...
验证码 换一张
取 消