兴奋大神

文章
3
资源
0
加入时间
2年10月24天

Groovy操作复制文件

Groovy操作复制文件虽然Groovy最后的实现逻辑也是Java的那一套,但是其简介的语法真的是让人欲罢不能复制文本def copy(String srcPath, String destPath) { def f = new File(srcPath) def d = new File(destPath) if (!d.exists()) { ...