Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

File.renameTo fails over NFS mounts so I'm using the commons.io FileUtils class's moveFile method. Occasionally it throws an IOException when moving a file however that file correctly shows up in the NFS mount. I'm assuming there is a race condition between when FileUtils checks to make sure the file was moved and NFS saying that's a valid file.

What is the best way to ensure a smooth file move over to an NFS mount in Java?

File f = new File("test.log");
FileUtils.moveFile(f, new File(newDir, f.getName));
share|improve this question
Possible dupe stackoverflow.com/questions/300559/… – Chris Kaminski Jun 23 '11 at 18:09

1 Answer

import static java.nio.file.StandardCopyOption.*;
import java.io.file.Files; 

Files.copy(source, target, REPLACE_EXISTING);

In Unix you can't rename or move between filesystems, so first you have to copy, and then if it was a move/rename, you would delete the source.

File f = ...;  
f.delete(); 
share|improve this answer
StandardCopyOption is java-7-only. Not much use to 99.99% of java developers. – skaffman Jun 23 '11 at 18:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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