FTP client application
-
Hi, I want to do FTP client application in vc 6.0/MFC which should include the following functions, 1.Connect to the ftp server..(here i use local host) 1.List the directories in tree view and Navigation between directories. 2.Enumerating, creating, removing, and renaming directories. 3.Renaming, uploading, downloading, and deleting files. i don know how to start from the scratch. I use the local host and user as anonymous. can anyone guide me how to connect to the ftp local host/server. I hav confusion between winsocket and wininet.. which one i should use for ftp client application and tell me how to proceed further?
-
Hi, I want to do FTP client application in vc 6.0/MFC which should include the following functions, 1.Connect to the ftp server..(here i use local host) 1.List the directories in tree view and Navigation between directories. 2.Enumerating, creating, removing, and renaming directories. 3.Renaming, uploading, downloading, and deleting files. i don know how to start from the scratch. I use the local host and user as anonymous. can anyone guide me how to connect to the ftp local host/server. I hav confusion between winsocket and wininet.. which one i should use for ftp client application and tell me how to proceed further?
see the link http://www.codeproject.com/KB/IP/ftpserver.aspx
-
see the link http://www.codeproject.com/KB/IP/ftpserver.aspx
Thanks for the reply..The Link which you hav sent deal with FTP Server.. I need FTP Client Application...
-
Hi, I want to do FTP client application in vc 6.0/MFC which should include the following functions, 1.Connect to the ftp server..(here i use local host) 1.List the directories in tree view and Navigation between directories. 2.Enumerating, creating, removing, and renaming directories. 3.Renaming, uploading, downloading, and deleting files. i don know how to start from the scratch. I use the local host and user as anonymous. can anyone guide me how to connect to the ftp local host/server. I hav confusion between winsocket and wininet.. which one i should use for ftp client application and tell me how to proceed further?
If you use sockets, you need to handle all the FTP Ptotocol[^] stuff yourself. WinInet is much simpler: WinINet: FTP Sessions[^] Mark
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
Thanks for the reply..The Link which you hav sent deal with FTP Server.. I need FTP Client Application...
Ok, then this link will help http://msdn.microsoft.com/en-us/library/hf9x9wb4.aspx if you still any problem to develop, we can find any already developed source and understand it ?