디렉토리와 하위 디렉토리에있는 파일 목록을 가져 오려고합니다 (인쇄가 아니라 간단합니다).
난 노력 했어:
def folder = "C:\\DevEnv\\Projects\\Generic";
def baseDir = new File(folder);
files = baseDir.listFiles();
나는 디렉토리 만 얻습니다. 나는 또한 시도했다 :
def files = [];
def processFileClosure = {
println "working on ${it.canonicalPath}: "
files.add (it.canonicalPath);
}
baseDir.eachFileRecurse(FileType.FILES, processFileClosure);
그러나 "파일"은 폐쇄 범위에서 인식되지 않습니다.
목록은 어떻게 얻습니까?