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 8218359
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T12:46:05+00:00 2026-06-07T12:46:05+00:00

I do not have an iMac, but 2 users had the same problem on

  • 0

I do not have an iMac, but 2 users had the same problem on their iMac when they start my application. The application starts by creating a folder + a file inside it if they are not found, in the user home folder, through this code :

final String FILE_SEPARATOR = System.getProperty( "file.separator" );
File homeFolder = new File( System.getProperty( "user.home" ) + FILE_SEPARATOR + ".testAPP" + FILE_SEPARATOR + "database" );
String dataFilePath = homeFolder.getCanonicalFile() + FILE_SEPARATOR + "data.xml";
if( !homeFolder.exists() ) homeFolder.mkdirs();
File dataFile = new File( dataFilePath );               
dataFile.createNewFile();  // Throws IOException

This code throws this exception for both of them at the last line :

java.io.IOException: No such file or directory
at java.io.UnixFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:883)

Is there a specific restriction on iMac that causes this ?

  • 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-06-07T12:46:07+00:00Added an answer on June 7, 2026 at 12:46 pm

    Creating pathes by String concat and FILE_SEPARATOR is an unreliable way. Also mkdirs() execution may fail, therefore it is important to check the return value.
    Just try it this way:

    File homeFolder = new File(System.getProperty("user.home"));
    File testAppDir = new File(homeFolder, ".testAPP");
    File databaseDir = new File(testAppDir, "database");
    File dataFile = new File(databaseDir, "data.xml");
    if (!databaseDir.isDirectory())
        if (!databaseDir.mkdirs())
            throw new IOException("Failed to create directory");
    dataFile.createNewFile();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

App runs on simulator on my MacBook Air, but not on iMac. I have
I do NOT have config.active_record.whitelist_attributes = true in application config. And I have attr_protected()
I have inherited couple of .Net (C#) application which does not have any tracing
I have a problem with not being able to use .RemoveAll when retrieving a
I have a problem that i am not sure how to solve efficiently. I
May not have been the best title but anyways.. I have a stored procedure
I have an iMac with 4GB of RAM and dual core cpu but when
Did not have luck with these examples: Javascript File remove Javascript FSO DeleteFile Method
I have a Xaml file that does not have any code behind. I would
I have a website that does not have page refreshes when the visitor navigates

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.