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

This is currently what I have to delete the file but it's not working. I thought it may be permission problems or something but it wasn't. The file that I am testing with is empty and exists, so not sure why it doesn't delete it.

UserInput.prompt("Enter name of file to delete");
String name = UserInput.readString();
File file = new File("\\Files\\" + name + ".txt");
file.delete();

Any help would be GREATLY appreciated!

I now have:

        File file = new File(catName + ".txt");
        String path = file.getCanonicalPath();
        File filePath = new File(path);
        filePath.delete();

To try and find the correct path at run time so that if the program is tranferred to a different computer it will still find the file.

share|improve this question
have you checked file and folder permissions? – lock Dec 19 '10 at 23:24
What environemnt: Unix or Windows? – sorcerer Dec 19 '10 at 23:24
Is it giving an error? – Serplat Dec 19 '10 at 23:24
Are any exceptions thrown? What is the return value of the file.delete() call? – Brad Mace Dec 19 '10 at 23:25
What's the \\Files\` for? And do you really mean to append .txt`? – marcog Dec 19 '10 at 23:48

3 Answers

up vote 0 down vote accepted

Be sure to find out your current working directory, and write your filepath relative to it.

This code:

File here = new File(".");
System.out.println(here.getAbsolutePath());

... will print out that directory.

Also, unrelated to your question, try to use slashes instead of backslashes, i.e. / and not \ when you write filepaths. Backslashes work only on Windows.

share|improve this answer
Thanks! It was the fact that I didn't have the whole path in there. I knew it was something simple that I was completely missing! P.S - Thanks for the tip about slashes. – Kimberley Lloyd Dec 19 '10 at 23:31

I suspect that the problem is that the path is incorrect. Try this:

UserInput.prompt("Enter name of file to delete");
String name = UserInput.readString();
File file = new File("\\Files\\" + name + ".txt");
if (file.exists()) {
    file.delete();
} else {
    System.err.println(
        "I cannot find '" + file + "' ('" + file.getAbsolutePath() + "')");
}
share|improve this answer

I got the same problem! then realized that my directory was not empty. I found the solution in another thread: not able to delete the directory through Java

/**
 * Force deletion of directory
 * @param path
 * @return
 */
static public boolean deleteDirectory(File path) {
    if (path.exists()) {
        File[] files = path.listFiles();
        for (int i = 0; i < files.length; i++) {
            if (files[i].isDirectory()) {
                deleteDirectory(files[i]);
            } else {
                files[i].delete();
            }
        }
    }
    return (path.delete());
}
share|improve this answer

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.