如何检查文件是否不存在

发布于 2024-12-05 07:42:32 字数 363 浏览 3 评论 0原文

我正在尝试使用 nmake 创建然后测试我的安装程序和卸载程序。虽然可以开箱即用地检查创建和卸载,但我不知道如何检查卸载后文件是否被删除。

谢谢 HG

  ?: InstalledFile.txt
        Setup.exe --uninstall

    InstalledFile.txt: Installer
        Setup.exe

    Installer: Setup.exe
        InstallerAssembler.py -p=Complex.xml -t=Complex

    Setup.exe: 
        p4 sync $(VIEW)
        devenv ...

I am trying to use nmake to create and then test my installer and uninstaller. While creation and uninstallation can be checked out of the box I cannot figure out how to check that a file got removed after uninstall.

Thanks
HG

  ?: InstalledFile.txt
        Setup.exe --uninstall

    InstalledFile.txt: Installer
        Setup.exe

    Installer: Setup.exe
        InstallerAssembler.py -p=Complex.xml -t=Complex

    Setup.exe: 
        p4 sync $(VIEW)
        devenv ...

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

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

发布评论

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

评论(1

战皆罪 2024-12-12 07:42:32

make 不太擅长表示负逻辑。

我相信,标准的解决方法是创建一个虚拟文件:

InstalledFile.txt.isabsent:
    (some command that creates the target if InstalledFile.txt does not exist, and fails otherwise)

make isn't very good at representing negative logic.

The standard workaround, I believe, is to create a dummy file:

InstalledFile.txt.isabsent:
    (some command that creates the target if InstalledFile.txt does not exist, and fails otherwise)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文