是否有可能使用 DITA OT 1.8.5 中的 XHTML 插件将目录复制并粘贴到特定目录

Is it possible that a directory copied and pasted to a particular directory using XHTML plugin in DITA OT 1.8.5

是否有可能从'resource'文件夹中复制org.dita.xhtml中的目录或文件到由XHTML DITA OT转换生成的输出文件夹。

如果可以使用插件中的 xsl 更改,请提供代码。

还有其他方法吗,请指导我的步骤。

请帮助我。

你应该使用 depend.preprocess.post extension point, or another one that fits your needs, to call a new Ant target.

plugin.xml

<plugin id="com.example.extendchunk">
  <feature extension="depend.preprocess.post" value="copyfiles"/>
  <feature extension="dita.conductor.target.relative" file="myAntStuffWrapper.xml"/>
</plugin> 

myAntStuffWrapper.xml

<dummy>
  <import file="myAntStuff.xml"/>
</dummy>

myAntStuff.xml

<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." name="myAntStuff">
  <target name="copyfiles">
    <copy todir="foo">
      <fileset>
        <include name="**/*.bar"/>
      </fileset>
    </copy>
  </target>
</project>