コード例 #1
0
ファイル: Povray.java プロジェクト: vparfonov/api-samples
 private File getImagesDir() {
   PovrayProject proj = renderService.getProject();
   FileObject fob = proj.getImagesFolder(true);
   File result = FileUtil.toFile(fob);
   assert result != null && result.exists();
   return result;
 }