GPT4.0+Midjourney绘画+国内大模型 会员永久免费使用!
【 如果你想靠AI翻身,你先需要一个靠谱的工具! 】
在代码中进行命令行交互是一个很常见的场景, 特别是在一些CI CD 自动化流程中, 在这之前我们会使用 System.Diagnostics.Process
API, 现在有一个更灵活的工具 CliWarp, 这是一个在 .NET 平台使用的命令行交互工具库, 通过在C# 中使用 Fluent 的API, 让命令行交互举重若轻。
https://github.com/Tyrrrz/CliWrap
主要特性如下:
System.Diagnostics.Process
和 shell 是类似的,CliWrap 的基本工作单元是一个 command
, 首先会执行 Cli.Wrap(...) 创建 command, 参数是可执行文件的路径, 然后通过 fluent api 配置, 最后调用 ExecuteAsync
运行命令,如下:
1 2 3 4 5 6 | using CliWrap; using CliWrap.Buffered; var result = await Cli.Wrap( "path/to/exe" ) //.... .ExecuteBufferedAsync(); |
配置参数
1 2 3 4 5 6 7 8 9 10 11 | var cmd = Cli.Wrap( "git" ) .WithArguments( "commit -m \"my commit\"" ); var cmd = Cli.Wrap( "git" ) .WithArguments( new [] { "commit" , "-m" , "my commit" }); var cmd = Cli.Wrap( "git" ) .WithArguments(args => args .Add( "clone" ) .Add( "https://github.com/Tyrrrz/CliWrap" ) .Add( "--depth" ) .Add(20)); |
配置工作目录
默认是当前目录, 你也可以指定文件夹的相对路径和绝对路径
1 2 | var cmd = Cli.Wrap( "git" ) .WithWorkingDirectory( "c:/projects/my project/" ); |
配置环境变量
1 2 3 4 | var cmd = Cli.Wrap( "git" ) .WithEnvironmentVariables(env => env .Set( "GIT_AUTHOR_NAME" , "John" ) .Set( "GIT_AUTHOR_EMAIL" , "john@email.com" )); |
超时和取消
1 2 3 4 5 | using var cts = new CancellationTokenSource(); cts.CancelAfter(TimeSpan.FromSeconds(10)); var result = await Cli.Wrap( "path/to/exe" ).ExecuteAsync(cts.Token); |
基于拉取的事件流
除了执行命令之外,CliWrap 还支持事件流模型, 可以订阅相关的事件回调。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | using CliWrap; using CliWrap.EventStream; var cmd = Cli.Wrap( "foo" ).WithArguments( "bar" ); await foreach (var cmdEvent in cmd.ListenAsync()) { switch (cmdEvent) { case StartedCommandEvent started: _output.WriteLine($ "Process started; ID: {started.ProcessId}" ); break ; case StandardOutputCommandEvent stdOut: _output.WriteLine($ "Out> {stdOut.Text}" ); break ; case StandardErrorCommandEvent stdErr: _output.WriteLine($ "Err> {stdErr.Text}" ); break ; case ExitedCommandEvent exited: _output.WriteLine($ "Process exited; Code: {exited.ExitCode}" ); break ; } } |
输出结果如下:
希望对您有用! https://github.com/Tyrrrz/CliWrap
到此这篇关于使用 CliWrap 让C#中的命令行交互举重若轻的文章就介绍到这了,更多相关C#命令行交互内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!