java.io.IOException: Failed to create a temporary file in /Users/Shared/Jenkins/Home/jobs/RecyclerTest
Searched on Google with the first line of a JAVA stack trace?
We can recommend more relevant solutions and speed up debugging when you paste your entire stack trace with the exception message. Try a sample exception.
Recommended solutions based on your search
Samebug tips
If the directory ../.foo/bar/ doesn't exist, you can't create a file there, so make sure you create the directory first.
File f = new File("somedirname1/somedirname2/somefilename"); if (!f.getParentFile().exists()) f.getParentFile().mkdirs();
Solutions on the web
via Jenkins JIRA by vikas goyal, 1 year ago
via Jenkins JIRA by vikas goyal, 1 year ago
via jenkins-ci.org by Unknown author, 1 year ago
via Jenkins JIRA by Wasim Shaikh, 1 year ago
via Jenkins JIRA by Wasim Shaikh, 1 year ago
via Google Groups by jsat...@gmail.com (JIRA), 1 year ago
java.io.IOException: No such file or directory
at java.io.UnixFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:1006)
at java.io.File.createTempFile(File.java:1989)
at hudson.util.AtomicFileWriter.
(AtomicFileWriter.java:66)