(String prefix, String suffix)
| 121 | /// |
| 122 | /// - `IOException` |
| 123 | public static File createTempFile(String prefix, String suffix) throws IOException { |
| 124 | String p = FileSystemStorage.getInstance().getAppHomePath() + "/temp/"; |
| 125 | FileSystemStorage.getInstance().mkdir(p); |
| 126 | return new File(p + prefix + System.currentTimeMillis() + suffix); |
| 127 | |
| 128 | } |
| 129 | |
| 130 | /// Returns the file name. |
| 131 | /// |