0

我需要将来自不同位置的文件集合压缩到一个 zip 中,保持它们的初始关系。例如,我只需要以下文件夹结构中的 a1 和 b2

Top -- A -- a1
         -- a2
    -- B -- b1
            b2

我希望 zip 文件看起来像:

Top -- A -- a1
    -- B -- b2

如何使用 AntBuilder 做到这一点?我试过了:

def deploymentFiles = [ "$HOME/Songs/a.tsv", "$HOME/Songs/b.tsv", ]

def ant = new AntBuilder()

def zipFile = new File("deployment_zipFile.zip")

ant.zip( destFile: "${zipFile.getAbsolutePath()}" ) { fileset( dir: "$HOME" ) { deploymentFiles.each {f -> 包括:deploymentFiles.join(",") } } }

但这只是压缩了整个 HOME 文件夹。

4

1 回答 1

1

给定这样的目录结构:

-- home
   |-- Songs
   |   |-- A
       |   |-- a1.tsv
       |   \-- a2.tsv
       |-- B
           |-- b1.tsv
           \-- b2.tsv

然后,这段代码:

def HOME = 'home'
def deploymentFiles = [ 'Songs/A/a1.tsv', 'Songs/B/b1.tsv' ]
def zipFile = new File("deployment_zipFile.zip")
new AntBuilder().zip( basedir: HOME,
                      destFile: zipFile.absolutePath,
                      includes: deploymentFiles.join( ' ' ) )

创建一个 zip 文件,提取时包含:

unzip ../deployment_zipFile.zip 
Archive:  ../deployment_zipFile.zip
   creating: Songs/
   creating: Songs/A/
  inflating: Songs/A/a1.tsv          
   creating: Songs/B/
  inflating: Songs/B/b1.tsv  
于 2013-02-20T11:49:22.523 回答