在gradle中,我想使用目录变量,在ant中将是$ {mydir}。
def mydir = new File("mydir")
copy {
from 'example.txt'
into '${mydir}/out/'
}
这该怎么做?该文档不包含有关此问题的信息AFAICS,http://gradle.org/docs/current/userguide/working_with_files.html
最佳答案
尝试:
into new File(mydir, out)
或者如果使用
GString
into "${mydir}/out/"
(注意双
"
引号)