MCPcopy Index your code
hub / github.com/davidgiven/luje / createTempFile

Method createTempFile

lib/java/io/File.java:1258–1261  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 5

getStringMethod · 0.95
getPropertyMethod · 0.95
genTempFileMethod · 0.95
createNewFileMethod · 0.95
lengthMethod · 0.65

Tested by

no test coverage detected