i am on creating FTP using Java.if client selects the server's folder to
receive in client side.The total files and folders,sub-folders in server
directory will be send to client over socket.Please tell me the how to send
folders over socket.
Thanks and Regards,
Krishnakumar.S
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35223
7
posted
0
FTP has facilities for sending files. Sending folders just means to send files and subfolders recursively for the selected folder. You need to make sure that any subfolders exist on the target machine, before transferring the files.
What do you have so far? Which FTP API are you using?
i am not using any FTP API .i am on creating it by using Java sockets
and ServerSocket.when client wants a file from server it sends
dout.writeUTF("SEND").Then server reads the stream usign din.readUTF().
i have so many commands like SEND,RECEIVE,EXIST,NOT EXIST.
so that what i am cmng to say that i am not using any API.
when client selected the Server's folder.that particular folder name send
to server.After all conditions it must return the files and folders in it.
Norm Radder
Ranch Hand
Joined: Aug 10, 2005
Posts: 681
posted
0
Sounds like your reinventing FTP. I'd at least read the doc for FTP to get all the protocol/commands you'll need.
A folder is a construct on an OS that allows you to organize files. Sending a folder would mean a sending a request to the reciever to create a folder by that name. See the MKDIR and ChgDir commands. [ July 29, 2008: Message edited by: Norm Radder ]