Server-U的特点是功能强大,但是需要收费。
FileZilla Server是一种小巧、快速、可信赖的支持FTP以及SFTP的服务器端。它是开源的,并且具有很丰富的操作接口。
IIS是微软自带的FTP服务器,但是配置和操作非常的复杂。
Server-U
Filezilla Server
二、FTP客户端
常见FTP客户端工具:filezilla、LeapFTP、CuteFTP
filezilla
LeapFTP
CuteFTP
三、C++ FTP客户端操作框架
C++ FTP客户端框架:ftplibpp、ftplib、windows系统Wininet函数、libcurl、命令上传与下载文件。
ftplibpp, 提供ftp客户端功能的平台独立 C++ 库,支持Linux、Mac、window系统,支持 fxp, ssl/tl加密。
ftplib, 提供ftp客户端功能的平台独立 C库,支持Linux (X86), Mac OS-X and OpenVMS (AXP)系统。
windows系统Wininet函数,
注意:windows中命令上传与下载文件方式比其他方式更加有效,其他方式不太稳定。
1、ftplibpp
函数说明:
vs2015工程如何使用ftplib?
1)添加 文件到工程中。
2)预处理器定义中添加NOSSL NOLFS _CRT_SECURE_NO_WARNINGS
3)头文件中增加
#include <win;
#ifndef _WIN32
#include <uni;
#include <sy;
#else
#include <win;
#endif
2、ftplib
函数说明:tml
3、windows系统Wininet函数
步骤:
1) InternetOpen初始化一个Internet句柄。此句柄用于建立一个FTP session。
2)InternetConnect创建一个FTP session。INTERNET_DEFAULT_FTP_PORT for the nServerPort parameter and INTERNET_SERVICE_FTP for the dwService parameter.
3)执行必要的操作。比如FtpPutFile、FtpGetFile、FtpDeleteFile、FtpRenameFile、FtpCreateDirectory、FtpRemoveDirectory、FtpGetCurrentDirectory、FtpSetCurrentDirectory等。
4)InternetCloseHandle关闭由InternetConnect创建的FTP session。
5)InternetCloseHandle关闭由InternetOpen创建的FTP session。
FtpCreateDirectory、FtpDeleteFile及之后的几个函数都需要InternetConnect返回的句柄。
常见函数介绍:
HINTERNET InternetOpen(
LPCTSTR lpszAgent,// 指定调用 WinINet 函数的应用程序或入口。该入口用作HTTP协议中用户代理项。其实是自定义的名称。如”MyFtp”、“mwj”等。
DWORD dwAccessType,//一般为INTERNET_OPEN_TYPE_PRECONFIG:返回注册表中的代理或直接的配置。
LPCTSTR lpszProxyName,//一般为NULL。若参数dwAccessType不是INTERNET_OPEN_TYPE_PROXY,此参数应被设为NULL。
LPCTSTR lpszProxyBypass,//一般为NULL。若参数dwAccessType不是INTERNET_OPEN_TYPE_PROXY,此参数应被设为NULL。
DWORD dwFlags);// INTERNET_FLAG_ASYNC:仅能用于作用在该函数返回的句柄的子句柄上的异步请求。INTERNET_FLAG_OFFLINE 与 INTERNET_FLAG_FROM_CACHE 相同:不做网络请求。所有的实体都由缓存返回。若请求条目不在缓存中,将返回一个错误。对于遍历FTP服务器上的文件夹时,此参数必须为0。
HINTERNET WINAPI InternetConnect(
HINTERNET hInternet, //InternetOpen返回的句柄
LPCTSTR lpszServerName, //要连接的Internet server的名字或IP
INTERNET_PORT nServerPort, //对FTP用INTERNET_DEFAULT_FTP_PORT
LPCTSTR lpszUserName, //对FTP可用“anonymous”。设为NULL,对FTP将自动设为anonymous
LPCTSTR lpszPassword, //若为NULL,对FTP则自动使用anonymous的默认密码
DWORD dwService, //对FTP用INTERNET_SERVICE_FTP
DWORD dwFlags, //一般为0
DWORD dwContext);//一般为0
此函数不仅可连接FTP还可连接HTTP。返回NULL表明连接失败。
FtpFindFirstFile和InternetFindNextFile遍历ftp文件
WIN32_FIND_DATA fd;
HINTERNET hFind = FtpFindFirstFile(hFtpSession, "/*.*", &fd, INTERNET_FLAG_RELOAD, 0);
if(hFind != INVALID_HANDLE_VALUE)
{
BOOL bFind = TRUE;
while(bFind)
{
bFind = InternetFindNextFile(hFind, &fd);
OutputDebugString);
OutputDebugString("n");
}
}
InternetCloseHandle(hFind);实例:
#include <a;
void main()
{
BOOL dRes,pRes;
HINTERNET hInternet;
HINTERNET hConnect;
hInternet = InternetOpen("Test Sample", INTERNET_OPEN_TYPE_DIRECT,
NULL, NULL, INTERNET_FLAG_NO_CACHE_WRITE);
if ( NULL == hInternet )
{
printf("InternetOpen Error:%dn", GetLastError() );
}
hConnect = InternetConnect(hInternet, "127.0.0.1"/*FTP服务器地址*/, INTERNET_DEFAULT_FTP_PORT/*FTP端口号,此为默认值---21*/,
"admin"/*用户名*/, "123456"/*密码*/, INTERNET_SERVICE_FTP,
INTERNET_FLAG_EXISTING_CONNECT || INTERNET_FLAG_PASSIVE,0 );
if ( NULL == hInternet )
{
printf( "InternetConnect Error:%dn", GetLastError() );
InternetCloseHandle(hInternet);
}
dRes = FtpGetFile(hConnect, "./download;, "D:\;, FALSE,
FILE_ATTRIBUTE_ARCHIVE, FTP_TRANSFER_TYPE_UNKNOWN, 0);
if ( dRes == 0 )
{
printf( "FtpGetFile Error:n", GetLastError() );
}else{
printf( "下载文件成功!n" );
}
pRes = FtpPutFile(hConnect,"D:\;,";,FTP_TRANSFER_TYPE_ASCII,0);
if(pRes==0)
{
printf("上传文件失败!n");
}else{
printf("上传文件成功!n");
}
InternetCloseHandle(hConnect);
InternetCloseHandle(hInternet);
if(dRes&&pRes) return true;
else return false;
4、libcurl实现ftp客户端(上传、下载、进度、断点续传)
5、命令上传文件
bool FtpUploadFile(std::string strUuid,std::string strIp,int nPort,std::string
strLoginUsername,std::string strLoginPassword,std::string strMainPath,std::string
strSubPath,std::string strLocalFilePath,std::string strRomuteFileName,bool bIsBinary)
{
std::string strCommandFile = strMainPath;
strCommandFile += "//";
strCommandFile += strUuid;
strCommandFile += "-command.tmp";
FILE * pCommandFile = fopen(),"w+");
std::string strFileName = "";
char *pSrcFilePath = (char *();
char *pFindPos = strrchr(pSrcFilePath,'/');
if(pFindPos == NULL)
{
pFindPos = strrchr(pSrcFilePath,'\');
}
if(pFindPos != NULL)
{
strFileName = ((pFindPos-pSrcFilePath)+1,()-((pFindPos-
pSrcFilePath)+1));
}
if(pCommandFile != NULL)
{
fprintf(pCommandFile,"open %s %dn",(),nPort);
fprintf(pCommandFile,"USER %sn",());
fprintf(pCommandFile,"%sn",());
//create directory
fprintf(pCommandFile,"mkdir %sn",());
fprintf(pCommandFile,"cd %sn",());
fprintf(pCommandFile,"mkdir %sn",());
fprintf(pCommandFile,"cd %sn",());
if(bIsBinary)
{
fprintf(pCommandFile,"binaryn");
}
else
{
fprintf(pCommandFile,"asciin");
}
fprintf(pCommandFile,"prompt offn");
fprintf(pCommandFile,"delete %sn",());
fprintf(pCommandFile,"put %sn",());
//rename
i() > 0 && strFileName != strRomuteFileName)
{
fprintf(pCommandFile,"rename %s %sn",(),());
}
fprintf(pCommandFile,"quitn");
fclose(pCommandFile);
std::string strParameter = "-n -s:" + strCommandFile;
SHELLEXECUTEINFO shExecInfo = {0};
= sizeof(SHELLEXECUTEINFO);
= SEE_MASK_NOCLOSEPROCESS;
= NULL;
= NULL;
= "";
= strParameter;
= NULL;
= SW_HIDE;
= NULL;
ShellExecuteEx(&shExecInfo);
WaitForSingleObjec);
DeleteFile());
return true;
}
else
{
return false;
}
}
1.《.net如何实现文件上传看这里!ftp上传文件》援引自互联网,旨在传递更多网络信息知识,仅代表作者本人观点,与本网站无关,侵删请联系页脚下方联系方式。
2.《.net如何实现文件上传看这里!ftp上传文件》仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证。
3.文章转载时请保留本站内容来源地址,https://www.lu-xu.com/gl/2178738.html