Re: Playing with the file system

2005-10-17 Thread Benjamin Lerman
Thanks for your answers, it helps me resolved my problem. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Playing with the file system

2005-10-16 Thread Tamas Szabo
Hi, you should probably look at the methods of ServletContext. I'd like to put them in the /img directory of my application, but I > cannot find a way to get a real path for this directory. Is there any > way to get it? ServletContext.getRealPath(String path) And then my other question is: how

Re: Playing with the file system

2005-10-16 Thread Larry Meadors
I have done this by putting the uploads into a database (in a blob) then creating a servlet to serve them up. This has the added benefit of allowing you to easily add additional info to the image (who uploaded it? when? etc...) Larry On 10/16/05, Benjamin Lerman <[EMAIL PROTECTED]> wrote: > Hi

Playing with the file system

2005-10-16 Thread Benjamin Lerman
Hi all, First of all, I'm not sure what I want to do is the right way to handle my problem, so all suggestion, even if they are not a response to the problem asked would be appreciate. I'd like to implement the possibility to upload files to my application. The uploading part is not really the