Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6124841
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T16:10:45+00:00 2026-05-23T16:10:45+00:00

When I start my application I create a temp folder: public static File createTempDir(String

  • 0

When I start my application I create a temp folder:

  public static File createTempDir(String name) throws IOException {
    File tempDir = File.createTempFile(name, "");
    if (!(tempDir.delete())) {
      throw new IOException("could not delete" + tempDir.getAbsolutePath());
    }

    if (!(tempDir.mkdir())) {
      throw new IOException("could not create" + tempDir.getAbsolutePath());
    }
    tempDir.deleteOnExit();
    return tempDir;
  }

During a session a user might load a file. As a result the old temp dir is deleted and a new is created based on the ID of the file loaded.

During load where the old temp dir is deleted I sometimes get a:

java.io.IOException: Unable to delete file:

Here is how the old temp folder is deleted:

  public void cleanup(String tmpPath) {
    File tmpFolder = new File(tmpPath);
    if (tmpFolder != null && tmpFolder.isDirectory()) {
      try {
        FileUtils.deleteDirectory(file);
      } catch (IOException e) {
            e.printStackTrace();
      }
    } 
  }

where FileUtils is: org.apache.commons.io.FileUtils. Typically the content of the temp folder is:

mytempfolder_uuid
|-> mysubfolder
|-> myImage.jpg

And the error is:

java.io.IOException: Unable to delete file: C:\Users\xxx\AppData\Local\Temp\mytempfolder_uuid\mysubfolder\myImage.jpg

I have tried to debug the application and before the delete operation is executed verified that the above image is actually located in the specified folder.

The nasty thing is that it only happens sometimes. I have made sure not to have the folder/files in the temp folder open in any other applications. Any ideas/suggestions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T16:10:45+00:00Added an answer on May 23, 2026 at 4:10 pm

    I’d suggest you use the Guava library. It has a method Files.createTempDir() that does exactly what you seem to need:

    Atomically creates a new directory somewhere beneath the system’s
    temporary directory (as defined by the java.io.tmpdir system
    property), and returns its name. Use this method instead of
    File.createTempFile(String, String) when you wish to create a
    directory, not a regular file. A common pitfall is to call
    createTempFile, delete the file and create a directory in its place,
    but this leads a race condition which can be exploited to create
    security vulnerabilities, especially when executable files are to be
    written into the directory.
    This method assumes that the temporary
    volume is writable, has free inodes and free blocks, and that it will
    not be called thousands of times per second.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have an application that create a log file of the following format: 2009-03-27
public static final String PREFS_NAME = MyPrefsFile; private SharedPreferences settings; settings = getSharedPreferences(PREFS_NAME, 0);
I want to create one application which send email with attachment(select file from SD
I'd like to know how one would create an application that starts in the
I have created an application.in the app i start a countdown timer and save
I need to create a batch file which starts multiple console applications in a
I've never done a Java Web start application before. I wrote my app's JNLP
I have a Java Web Start application. I specify the resource (jars, images, etc)
I don't know how make my application as auto start application.That is my expectation
Is it possible to get a thread dump of a Java Web Start application?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.