使用批处理文件查找并删除资源文件

发布于 2024-10-02 19:47:56 字数 146 浏览 1 评论 0原文

我从来没有写过批处理文件,所以请耐心等待。

我想从批处理文件的当前工作目录中查找资源文件。如果它存在,那么我已停止 aspnet_wp.exe 进程(如果正在运行)并删除此资源文件。稍后运行 resgen 命令来创建一个新的资源文件(新文件名应与旧文件名相同)。

I have never written a batch file so please bear with me.

I want to find resource file from current working directory of batch file. If it exist then I have stop aspnet_wp.exe process (if running) and delete this resource file. Later run resgen command to create a fresh resource file (new file name should be same as old one).

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

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

发布评论

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

评论(1

瑶笙 2024-10-09 19:47:56

查看 taskkill 命令。您可以调用此函数来停止该过程。

例如,如果资源文件名为“resource.txt”,

IF EXIST resource.txt (
    taskkill /im aspnet_wp.exe
    del resource.txt
    resgen
)

Take a look at the taskkill command. You can include a call to this to stop the process.

For example if the resource file is named "resource.txt",

IF EXIST resource.txt (
    taskkill /im aspnet_wp.exe
    del resource.txt
    resgen
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文