Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: .NET 中的 ShellExecute 等效 项 从代码执行 CMD 命令
例如,我想在命令提示符下取消隐藏驱动器中的所有文件和文件夹,我们使用此命令 attrib -s -h -r -a /s /di:*.* 如何使其在 C# 程序中执行。
您当然可以通过编程方式进行,但快速而肮脏的解决方案是
Process.Start("attrib", "-s -h -r -a /s /d i:*.*");