コード例 #1
0
ファイル: Application.java プロジェクト: maarksco/nodebox
 /**
  * Creates the necessary directories used for storing user scripts and Python libraries.
  *
  * @throws RuntimeException if we can't create the user directories. This is fatal.
  */
 private void createNodeBoxDataDirectories() throws RuntimeException {
   Platform.getUserDataDirectory().mkdir();
   Platform.getUserScriptsDirectory().mkdir();
   Platform.getUserPythonDirectory().mkdir();
 }