File Managment Functions

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • cowboyrocks2009
    New Member
    • Mar 2009
    • 17

    File Managment Functions

    Hi,
    I need to develop the functions below for a server in Java. Is there any package or class that I can use ?
    I just had a look at one namely...
    com.mindbright. net.ftp.
    Can you guide me about developing these functions below:-

    1) Retrieve file from server
    2) Add, edit, delete a file from server.
    3) upload / download file from server
    4) Logon and version control

    Regards
    Cowboy
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    For editing files you can use File and FileWriter API.
    For uploading to the server, use Apache's commons-fileupload API.

    Comment

    Working...