vote up 4 vote down star
1

In my Java application I am renaming files to a file name provided in a String parameter. There is a method

boolean OKtoRename(String oldName, String newName)

which basically checks whether the newName isn't already taken by some other file, as I wouldn't want to bury existing ones.

It now occurred to me that perhaps the newName String will not denote a valid file name. So I thought to add this check to the method:

if (new File(newName).isFile()) { 
    return false; 
}

Which obviously isn't the right way to do it, since in most cases the newFile does not yet exist and therefore although it is OKtoRename, the function returns false.

I was wondering, is there a method (I know there isn't for the java.io.File objects) like canExist()? Or would I have to resort to regex to make sure the newFile String does not contain invalid characters (e.g. ?, *, ", :)? I wonder if there is perhaps a function hidden somewhere in the JDK that would tell me if a string could possibly denote a valid file name.

flag

80% accept rate
please, no more exists() answers, this is not helpful. I am trying to check whether a file COULD possibly exist. – MasterPeter May 21 at 17:15
1  
@MasterPeter: Try rewording your question. It initally look like you want to know if the file exists, when what you actually need is to know if the file NAME is valid. I've change the title, but didn't touch the question wording. – Oscar Reyes May 21 at 17:18

7 Answers

vote up 9 vote down check

Use createNewFile(), which will atomically create the file only if it doesn't yet exist.

If the file is created, the name is valid and it is not clobbering an existing file. You can then open the files and efficiently copy data from one to the other with FileChannel.transferXXX operations.

An important thing to keep in mind that, in general, the check and the creation should be atomic. If you first check whether an operation is safe, then perform the operation as a separate step, conditions may have changed in the meantime, making the operation unsafe.

Additional food for thought is available at this related post: "Move/Copy operations in Java."

link|flag
1  
You'll want to delete the file you just created, though, because the function OKtoRename isn't supposed to actually change the file system, just answer if the file name would work. – Matt Poush May 21 at 17:18
1  
@Matt: Ooor, you just create the file and if createNewFile return false, it means the file name was not valid ( ... or could not be created :-S ) ¬¬ – Oscar Reyes May 21 at 17:20
exactly, I think I'll go with this solution but I don't like the idea of creating an empty file just to delete it immediately afterwards... – MasterPeter May 21 at 17:21
You really shouldn't delete the file if there's any possibility that another process or thread could be creating a file of the same name. (And if there isn't, why are you bothering to check in the first place?) – sylvarking May 21 at 17:24
1  
Sorry for the focus on concurrency; I originally interpreted that as the primary question. However, actually creating the file is the only way to see if the name is valid. You can check out my question stackoverflow.com/questions/122400/… about reserved names on different platforms if you are interested in trying to go that route. – sylvarking May 21 at 17:27
show 2 more comments
vote up 2 vote down

I assembled a list of illegal filename characters (considering UNIX, Mac OS X and Windows systems) based on some online research a couple of months ago. If the new filename contains any of these, there's a risk that it might not be valid on all platforms.

private static final char[] ILLEGAL_CHARACTERS = { '/', '\n', '\r', '\t', '\0', '\f', '`', '?', '*', '\\', '<', '>', '|', '\"', ':' };
link|flag
2  
But don't forget keywords, like trying to create a file called COM, COM1, COM2, PRN, etc. (at least on Windows platforms) – Instantsoup May 26 at 17:52
Point taken, haven't even thought about that... – Zsolt Török May 27 at 10:26
vote up 1 vote down

To me it appears to be an OS dependent problem. You may simply want to check for some invalid character in the file name. Windows does this when you try to rename the file, it pops a message saying that a file cannot contain any of the following characters: \ / : * ? < > | I am not sure if your question is "is there a library doing the job for me?" in that case I don't know any.

link|flag
one should probably also check the length of the filename. – Paulo Guedes May 21 at 18:06
vote up 0 vote down

Look here: The Java Developers Almanac 1.4

boolean exists = (new File("filename")).exists();
if (exists) {
    // File or directory exists
} else {
    // File or directory does not exist
}
link|flag
this doesn't help me. OKtoRename("valid.file", "$:??") would check if $:?? exists (no) then the method would return true, since if the new filename is not yet taken, the old file can be renamed to the new file name – MasterPeter May 21 at 17:11
What about race conditions where another process runs between the existence check and the creation of the file? – sylvarking May 21 at 17:12
Yeah, that would be a mess, but there is no such danger. – MasterPeter May 21 at 17:17
vote up 0 vote down

Using

String validName = URLEncoder.encode( fileName , "UTF-8");

File newFile = new File( validName );

Does the work.

I have just found today. I'm not sure if it works 100% of the time, but so far, I have been able to create valid file names.

link|flag
Sorry, but if there were stars in the fileName, your code would not help. System.out.println(URLEncoder.encode( "*hello world*", "UTF-8")); prints out hello+world And that would not be a valid file name. – MasterPeter May 26 at 19:06
Great!.. You are correct, actually I was about to ask this. :) – Oscar Reyes May 26 at 19:18
vote up -1 vote down

Use exists() method.

link|flag
vote up -1 vote down

Determining If a File or Directory Exists

boolean exists = (new File("filename")).exists();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.