Layout.getStaticDir (subdir)
return the directory where images of this layout are stored

  • Returns
    Object File Object representing the image directory on disk
Sourcecode in Layout/objectFunctions.js:
1:   function getStaticDir(subdir) {
2:      var f = new Helma.File(this.getStaticPath(subdir));
3:      f.mkdir();
4:      return f;
5:   }