• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Creating new directory in the server

 
Greenhorn
Posts: 22
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm building an application that allows users to upload files into the server, but I don't want to specify a single folder to store all the files. I want to create a folder for each user, the name of the folder would be the username.

I tried to use this code:



Where "/Public/" is a directory which doesn't exist on the server, therefore I have to create it at runtime.

I think this is more a java.IO question, but as I bumped into it doing a web application I decided to post it here...

Thanks
 
reply
    Bookmark Topic Watch Topic
  • New Topic