I want to create a file for writing and get an exception if the file with the given name already exists. I'm looking for an implementation that is thread-safe, and hopefully in the Java standard library. The closest call I have found is this:
FileOutputStream fos = new FileOutputStream("/some/file/path.txt");
But this will truncate an existing file with the same name. Is there any method that will throw an exception or otherwise return an error, if there is a file with the same name already?