如何从 NAnt 运行 Windows 删除命令?

发布于 2024-11-04 13:18:32 字数 57 浏览 0 评论 0原文

我想从 NAnt 脚本内部执行 remove 命令。我怎样才能做到这一点?

I want to execute remove command from inside a NAnt script. How can I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

︶ ̄淡然 2024-11-11 13:18:32

我不知道 MSDOS 中有一个名为“删除”的命令。您指的是“rm”吗?

假设你的意思是“rm”,这里是一个如何让它工作的例子......

<tasks>
  <exec>
    <executable>$(windir)\system32\cmd</executable>
    <buildArgs>/c "rm somefile.txt"</buildArgs>
  </exec>
</tasks>

I'm not aware of a command called 'remove' in MSDOS. Did you mean 'rm'?

Assuming you meant 'rm' here is an example of how to get it to work ...

<tasks>
  <exec>
    <executable>$(windir)\system32\cmd</executable>
    <buildArgs>/c "rm somefile.txt"</buildArgs>
  </exec>
</tasks>
仙气飘飘 2024-11-11 13:18:32

假设你想删除一些文件,你可以尝试内置的 nant delete任务

Assuming you want to delete some files, you could try the built-in nant delete task.

紅太極 2024-11-11 13:18:32

内置的 nant delete 任务是最好的,直到您遇到 node_modules 问题并且指定的路径、文件名或两者都太长问题

这对我有用

<exec program="${environment::get-variable('WinDir')}\system32\cmd">
    <arg value="/c "rmdir /q /s ${Build.BuildFolder}\WebApplication\node_modules"" />
</exec>

The built in nant delete task is best until you have a problem with node_modules and the The specified path, file name, or both are too long problem

This worked for me

<exec program="${environment::get-variable('WinDir')}\system32\cmd">
    <arg value="/c "rmdir /q /s ${Build.BuildFolder}\WebApplication\node_modules"" />
</exec>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文