使用Ant任务完成此任务的最佳方法是什么:
从一堆名字像这样的文本文件开始:
Filename_With_Underscores.txt
Another_Filename_With_Underscores.txt
Yet_Another_Filename_With_Underscores.txt
并把它们变成这样:
Filename+With+Underscores.txt
Another+Filename+With+Underscores.txt
Yet+Another+Filename+With+Underscores.txt
我实际上需要更改每个文本文件所包含的同名文件夹,也就是说,从这个文件夹/文件结构开始:
Filename_With_Underscores/Filename_With_Underscores.txt
并把它变成这样:
Filename+With+Underscores/Filename+With+Underscores.txt
但是如果我知道如何重写文本文件名,我可以处理这个问题。
我会知道如何替换所有下划线与加号在内容的文件,使用replaceregexp,但我如何做到这对文件夹和文件名本身?
过去我曾使用映射器重写文件夹和文件名,例如:
<target name="dita_wrap" description="Wraps each file in a folder with the same name as the file, copies all to new location">
<copy todir="output" verbose="true">
<fileset dir="source"
includes="*/*.dita" />
<regexpmapper handledirsep="true" from="^(.*)/([^/]*).dita$"
to="1/2/2.dita" />
</copy>
</target>
然而,像这样捕获并替换文件名中的每个下划线,无论有多少下划线,都让我感到困惑。任何建议吗?
您需要一个<filtermapper>
,例如:
<copy todir="output" verbose="true">
<fileset dir="source" includes="*/*.txt" />
<filtermapper>
<replacestring from="_" to="+"/>
</filtermapper>
</copy>
Works for me:
$> find . -type f
./build.xml
./source/Filename_With_Underscores/Filename_With_Underscores.txt
./output/Filename+With+Underscores/Filename+With+Underscores.txt