Мне нужно найти именованную папку на диске D из действия контроллера. Как я могу любой орган, скажите мне, как это сделать в Grails PLZ.
Заранее спасибо,
Laxmi.P
class MyController { def findDir = { String dirName = 'nameOfDirectoryToMatch' new File('D:/').eachDirMatch(dirName) {File dir -> // put the code to handle the matching dir(s) here. // In this example we just print out the full path println dir.absolutePath } } }