Posted By:
Muhammad_Murad
Posted On:
Wednesday, April 10, 2002 09:34 PM
Hi! I need to copy all files and folders under a specific folder in unix, to windows. this process should initiate from a windows platform. I intend to do it through the following procedure. 1. make the unix folder available on the web server, so that it can be viewed using a url 2. use the URL class in order to view the contents of the folders. 3. if the URL is e.g "http://192.168.2.9:8080/xyz/", i will use file.exists() method to check whether files under the xyz directory exists or not? 4. after that i intend to use I/O streams to read those files and write to the windows destination. Please tell other ways to do this. As i strongly beleive there is som
More>>
Hi! I need to copy all files and folders under a specific folder in unix, to windows. this process should initiate from a windows platform. I intend to do it through the following procedure.
1. make the unix folder available on the web server, so that it can be viewed using a url
2. use the URL class in order to view the contents of the folders.
3. if the URL is e.g "http://192.168.2.9:8080/xyz/", i will use file.exists() method to check whether files under the xyz directory exists or not?
4. after that i intend to use I/O streams to read those files and write to the windows destination.
Please tell other ways to do this. As i strongly beleive there is some thing wrong with the above process.
<<Less