| Author |
How i create a folder on Remote host using servlet
|
Ram kanana
Ranch Hand
Joined: Apr 13, 2006
Posts: 34
|
|
|
Is this possible to create a folder dynamically on remote host and placed files on it using servlet.
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12265
|
|
A servlet can use normal Java code for creating directories and files - use java.io.File class just like you would in a desktop application. However, security restrictions on the server may prevent or limit directory and file creation. Java provides for very fine-grain control over what a servlet is allowed to do, and of course the operating system will also impose restrictions. Bill
|
Java Resources at www.wbrogden.com
|
 |
 |
|
|
subject: How i create a folder on Remote host using servlet
|
|
|