Arquivo java de classe do scanner não encontrado

A classe Scanner não encontrou o arquivo Eu uso o NetBeansIDE, e o test.txt está no caminho da pasta: D: \ netbeans project funciona \ ReadFile \ src \ readfile \ test.txt

na mesma pasta, o readfile.java exsist. o código é como abaixo. Gera arquivo não encontrado.

package readfile;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Scanner;


public class ReadFile {

    public static void main(String[] args) throws IOException , FileNotFoundException 
    {  
        Scanner scanner = new Scanner(new File("test.txt"));  

        while (scanner.hasNextLine())  
            System.out.println(scanner.nextLine());  
    }  
}

saída:-

run:
Exception in thread "main" java.io.FileNotFoundException: test.txt (The system cannot find the file specified)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at java.util.Scanner.<init>(Scanner.java:636)
    at readfile.ReadFile.main(ReadFile.java:14)
Java Result: 1
BUILD SUCCESSFUL (total time: 0 seconds)

questionAnswers(5)

yourAnswerToTheQuestion