即使目录存在,nant directory::exists 也会返回 false

发布于 2024-10-19 01:55:09 字数 898 浏览 4 评论 0原文

我正在尝试检查目录是否作为 NAnt 脚本的一部分存在并得到假阴性。这是脚本片段:

<echo message="${backup.dir} --> ${directory::exists('${backup.dir}')}"/>

这是输出:

[echo] D:\D\RTC\backup\20110223 --> False

除非目录存在。

作为旁注,如果我运行..

<echo message="${backup.dir} --> ${directory::get-creation-time('${backup.dir}')}"/>

我会收到以下错误:

Expression: ${backup.dir} --> ${directory::get-creation-time('${backup.dir}')}
                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    Could not find a part of the path "D:\D\RTC\${backup.dir}".

并且如果我运行..

<echo message="Directory Name --> ${path::get-directory-name('${backup.dir}')}"/>

我得到

[echo] Directory Name -->

总而言之,我现在很困惑..有什么想法吗?

I'm trying to check for if a directory exists as part of a NAnt script and getting a false negative. Here is the script fragment:

<echo message="${backup.dir} --> ${directory::exists('${backup.dir}')}"/>

Here is the output:

[echo] D:\D\RTC\backup\20110223 --> False

Except the directory exists.

As a side note if I run..

<echo message="${backup.dir} --> ${directory::get-creation-time('${backup.dir}')}"/>

I get the following error:

Expression: ${backup.dir} --> ${directory::get-creation-time('${backup.dir}')}
                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    Could not find a part of the path "D:\D\RTC\${backup.dir}".

AND if I run..

<echo message="Directory Name --> ${path::get-directory-name('${backup.dir}')}"/>

I get

[echo] Directory Name -->

All in all I'm very confused right now.. Any thoughts?

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

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

发布评论

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

评论(1

此岸叶落 2024-10-26 01:55:09

您不得以嵌套方式使用 ${}

<echo message="${backup.dir} --> ${directory::exists(backup.dir)}"/>

You must not use ${} in a nested way:

<echo message="${backup.dir} --> ${directory::exists(backup.dir)}"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文