Martin Cooper wrote:
File saveTo = new File(upload_path+"/"+name);

This should be considered a bug. You should be using:
new File(upload_path, name);
As the line separator character can vary by OS.

Stephen

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to