我们如何使用ant脚本提取文件的文件扩展名?

发布于 2024-11-09 20:08:29 字数 204 浏览 0 评论 0原文

场景如下:

共有三个文件:

test.xls 测试.txt test.doc

我现在正在使用 mqfte。当这些文件传输到另一个位置时,文件名必须如下:

result_xls.txt 结果_txt.txt result_doc.txt

有人可以帮忙吗?

这个文件名重命名可以用ant脚本完成吗?

The scenario is as follows:

Therea are three files :

test.xls
test.txt
test.doc

I am working with mqfte right now. When these files are transferred to another location the filenames must be as below :

result_xls.txt
result_txt.txt
result_doc.txt

Could anyone help on this?

Can this filename renaming done with ant scripts?

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

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

发布评论

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

评论(2

寂寞美少年 2024-11-16 20:08:29

试试这个:

<target name="test">
  <copy todir="dest">
    <fileset dir="src">
      <include name="test*"/>
    </fileset>
    <globmapper from="test.*" to="result_*.txt"/>
  </copy>
</target>

输入:

  $ find src
  src
  src/test.doc
  src/test.txt
  src/test.xls

输出:

  $ find dest/
  dest/
  dest/result_doc.txt
  dest/result_txt.txt
  dest/result_xls.txt

Try this:

<target name="test">
  <copy todir="dest">
    <fileset dir="src">
      <include name="test*"/>
    </fileset>
    <globmapper from="test.*" to="result_*.txt"/>
  </copy>
</target>

Input:

  $ find src
  src
  src/test.doc
  src/test.txt
  src/test.xls

Output:

  $ find dest/
  dest/
  dest/result_doc.txt
  dest/result_txt.txt
  dest/result_xls.txt
金兰素衣 2024-11-16 20:08:29

当然,您可以使用 Move Ant 任务 http://ant.apache.org/manual/任务/move.html

Sure, you can use the Move Ant Task http://ant.apache.org/manual/Tasks/move.html

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