我们如何使用ant脚本提取文件的文件扩展名?
场景如下:
共有三个文件:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
输入:
输出:
Try this:
Input:
Output:
当然,您可以使用 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