I am uploading a file with the PF 3.5 File Uploader
My Upload Method looks like that:
public void handleFileUpload(FileUploadEvent event) {  
    log.info("Method handleFileUpload invoked");
    FacesMessage msg = new FacesMessage("Succesful", event.getFile().getFileName() + " is uploaded.");  
    FacesContext.getCurrentInstance().addMessage(null, msg);  
    InputStream inputStream = null;
    OutputStream out = null;
    try {
        File targetFolder = new File("\\resources\\uploads");
        if(!targetFolder.exists()) {
            targetFolder.mkdirs();
        }
        inputStream = event.getFile().getInputstream();
        File outFile = new File(targetFolder, event.getFile().getFileName());
        log.info("copy file stream to " + outFile.getAbsolutePath());
        out = new FileOutputStream(outFile);
        int read = 0;
        byte[] bytes = new byte[size];
        log.info("read file stream");           
        while ((read = inputStream.read(bytes)) != -1) {
            out.write(bytes, 0, read);
        }
        out.flush();
    } catch (IOException e) {
        log.error(e);
    } finally {
        ...
    }
at the moment my files get uploaded to \\resources\\uploads". Thats the path to a folder on theC:`.
However, I want to upload my uploads to a path in my eclipse project. How to change the path? I really appreciate your answer!!!
 
     
    