清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
path = "." as File
if (args) {
path = args[0] as File
}
printDir path,0
def printDir(File path, int depth,boolean isLast = false, String nextLinePre = "") {
if (depth > 0) {
if (isLast) {
print '└'
nextLinePre += " "
} else {
print '├'
nextLinePre += "│ "
}
print '── '
}
println path.name
if (path.isDirectory()) {
File[] files = path.listFiles()
files.each {
print nextLinePre
if (it == files.last())
printDir(it, depth+1, true, nextLinePre)
else
printDir(it, depth+1, false, nextLinePre)
}
}
}