Creates an empty temporary file using the given prefix and suffix as part of the file name. If suffix is null, .tmp is used. This method is a convenience method that calls #createTempFile(String, String, File) with the third argument being null. @param prefix
(String prefix, String suffix)
| 1256 | * if an error occurs when writing the file. |
| 1257 | */ |
| 1258 | public static File createTempFile(String prefix, String suffix) |
| 1259 | throws IOException { |
| 1260 | return createTempFile(prefix, suffix, null); |
| 1261 | } |
| 1262 | |
| 1263 | /** |
| 1264 | * Creates an empty temporary file in the given directory using the given |
nothing calls this directly
no test coverage detected