Как найти папку на диске из действия контроллера в Grails? - PullRequest
0 голосов
/ 26 мая 2011

Мне нужно найти именованную папку на диске D из действия контроллера. Как я могу любой орган, скажите мне, как это сделать в Grails PLZ.

Заранее спасибо,

Laxmi.P

1 Ответ

3 голосов
/ 26 мая 2011
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    
    }
  }
}
...