ftp上传文件 ftp上传文件命令
yuyutoo 2024-10-21 11:59 1 浏览 0 评论
一、FTP服务器
常用的FTP服务器有:Server-U,Filezilla Server,IIS。
Server-U的特点是功能强大,但是需要收费。
FileZilla Server是一种小巧、快速、可信赖的支持FTP以及SFTP的服务器端。它是开源的,并且具有很丰富的操作接口。
IIS是微软自带的FTP服务器,但是配置和操作非常的复杂。
二、FTP客户端
常见FTP客户端工具:filezilla、LeapFTP、CuteFTP
三、C++ FTP客户端操作框架
C++ FTP客户端框架:ftplibpp、ftplib、windows系统Wininet函数、libcurl、ftp.exe命令上传与下载文件。
ftplibpp, 提供ftp客户端功能的平台独立 C++ 库,支持Linux、Mac、window系统,支持 fxp, ssl/tl加密。https://github.com/mkulke/ftplibpp
ftplib, 提供ftp客户端功能的平台独立 C库,支持Linux (X86), Mac OS-X and OpenVMS (AXP)系统。http://nbpfaus.net/~pfau/ftplib/
windows系统Wininet函数,https://docs.microsoft.com/zh-cn/windows/win32/wininet/ftp-sessions
注意:windows中ftp.exe命令上传与下载文件方式比其他方式更加有效,其他方式不太稳定。
1、ftplibpp
函数说明:https://www.helplib.com/GitHub/article_110777
vs2015工程如何使用ftplib?
1)添加ftplib.h ftplib.cpp文件到工程中。
2)预处理器定义中添加NOSSL NOLFS _CRT_SECURE_NO_WARNINGS
3)ftplib.h头文件中增加
#include <winsock.h>
#ifndef _WIN32
#include <unistd.h>
#include <sys/time.h>
#else
#include <winsock.h>
#endif
2、ftplib
函数说明:http://nbpfaus.net/~pfau/ftplib/ftplib.html
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(fd.cFileName);
OutputDebugString("\n");
}
}
InternetCloseHandle(hFind);实例:
#include <afxinet.h>
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:%d\n", 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:%d\n", GetLastError() );
InternetCloseHandle(hInternet);
}
dRes = FtpGetFile(hConnect, "./download/test.txt", "D:\\test.txt", FALSE,
FILE_ATTRIBUTE_ARCHIVE, FTP_TRANSFER_TYPE_UNKNOWN, 0);
if ( dRes == 0 )
{
printf( "FtpGetFile Error:\n", GetLastError() );
}else{
printf( "下载文件成功!\n" );
}
pRes = FtpPutFile(hConnect,"D:\\test.txt","test.txt",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客户端(上传、下载、进度、断点续传)
https://blog.csdn.net/wu110112/article/details/72898630
https://blog.csdn.net/u012234115/article/details/83869486
5、ftp.exe命令上传文件
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(strCommand.c_str(),"w+");
std::string strFileName = "";
char *pSrcFilePath = (char *)strLocalFilePath.c_str();
char *pFindPos = strrchr(pSrcFilePath,'/');
if(pFindPos == NULL)
{
pFindPos = strrchr(pSrcFilePath,'\\');
}
if(pFindPos != NULL)
{
strFileName = strLocalFilePath.substr((pFindPos-pSrcFilePath)+1,strLocalFilePath.size()-((pFindPos-
pSrcFilePath)+1));
}
if(pCommandFile != NULL)
{
fprintf(pCommandFile,"open %s %d\n",strIp.c_str(),nPort);
fprintf(pCommandFile,"USER %s\n",strLoginUsername.c_str());
fprintf(pCommandFile,"%s\n",strLoginPassword.c_str());
//create directory
fprintf(pCommandFile,"mkdir %s\n",strMainPath.c_str());
fprintf(pCommandFile,"cd %s\n",strMainPath.c_str());
fprintf(pCommandFile,"mkdir %s\n",strSubPath.c_str());
fprintf(pCommandFile,"cd %s\n",strSubPath.c_str());
if(bIsBinary)
{
fprintf(pCommandFile,"binary\n");
}
else
{
fprintf(pCommandFile,"ascii\n");
}
fprintf(pCommandFile,"prompt off\n");
fprintf(pCommandFile,"delete %s\n",strRomuteFileName.c_str());
fprintf(pCommandFile,"put %s\n",strLocalFilePath.c_str());
//rename
if(strRomuteFileName.size() > 0 && strFileName != strRomuteFileName)
{
fprintf(pCommandFile,"rename %s %s\n",strFileName.c_str(),strRomuteFileName.c_str());
}
fprintf(pCommandFile,"quit\n");
fclose(pCommandFile);
std::string strParameter = "-n -s:" + strCommandFile;
SHELLEXECUTEINFO shExecInfo = {0};
shExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
shExecInfo.fMask = SEE_MASK_NOCLOSEPROCESS;
shExecInfo.hwnd = NULL;
shExecInfo.lpVerb = NULL;
shExecInfo.lpFile = "ftp.exe";
shExecInfo.lpParameters = strParameter;
shExecInfo.lpDirectory = NULL;
shExecInfo.nShow = SW_HIDE;
shExecInfo.hInstApp = NULL;
ShellExecuteEx(&shExecInfo);
WaitForSingleObject(shExecInfo.hProcess,INFINITE);
DeleteFile(strCommandFile.c_str());
return true;
}
else
{
return false;
}
}
- 上一篇:微小的CMD 微小的力量
- 下一篇:微信聊天记录里的exe文件电脑本地无法打开
相关推荐
- MySQL5.5+配置主从同步并结合ThinkPHP5设置分布式数据库
-
前言:本文章是在同处局域网内的两台windows电脑,且MySQL是5.5以上版本下进行的一主多从同步配置,并且使用的是集成环境工具PHPStudy为例。最后就是ThinkPHP5的分布式的连接,读写...
- thinkphp5多语言怎么切换(thinkphp5.1视频教程)
-
thinkphp5多语言进行切换的步骤:第一步,在配置文件中开启多语言配置。第二步,创建多语言目录。相关推荐:《ThinkPHP教程》第三步,编写语言包。视图代码:控制器代码:效果如下:以上就是thi...
- 基于 ThinkPHP5 + Bootstrap 的后台开发框架 FastAdmin
-
FastAdmin是一款基于ThinkPHP5+Bootstrap的极速后台开发框架。主要特性基于Auth验证的权限管理系统支持无限级父子级权限继承,父级的管理员可任意增删改子级管理员及权限设置支持单...
- Thinkphp5.0 框架实现控制器向视图view赋值及视图view取值操作示
-
本文实例讲述了Thinkphp5.0框架实现控制器向视图view赋值及视图view取值操作。分享给大家供大家参考,具体如下:Thinkphp5.0控制器向视图view的赋值方式一(使用fetch()方...
- thinkphp5实现简单评论回复功能(php评论回复功能源码下载)
-
由于之前写评论回复都是使用第三方插件:畅言所以也就没什么动手,现在证号在开发一个小的项目,所以就自己动手写评论回复,没写过还真不知道评论回复功能听着简单,但仔细研究起来却无法自拔,由于用户量少,所以...
- ThinkPHP框架——实现定时任务,定时更新、清理数据
-
大家好,我是小蜗牛,今天给大家分享一下,如何用ThinkPHP5.1.*版本实现定时任务,例如凌晨12点更新数据、每隔10秒检测过期会员、每隔几分钟发送请求保证ip的活性等本次分享,主要用到一个名为E...
- BeyongCms系统基于ThinkPHP5.1框架的轻量级内容管理系统
-
BeyongCms内容管理系统(简称BeyongCms)BeyongCms系统基于ThinkPHP5.1框架的轻量级内容管理系统,适用于企业Cms,个人站长等,针对移动App、小程序优化;提供完善简...
- YimaoAdminv3企业建站系统,使用 thinkphp5.1.27 + mysql 开发
-
介绍YimaoAdminv3.0.0企业建站系统,使用thinkphp5.1.27+mysql开发。php要求5.6以上版本,推荐使用5.6,7.0,7.1,扩展(curl,...
- ThinkAdmin-V5开发笔记(thinkpad做开发)
-
前言为了快速开发一款小程序管理后台,在众多的php开源后台中,最终选择了基于thinkphp5的,轻量级的thinkadmin系统,进行二次开发。该系统支持php7。文档地址ThinkAdmin-V5...
- thinkphp5.0.9预处理导致的sql注入复现与详细分析
-
复现先搭建thinkphp5.0.9环境...
- thinkphp5出现500错误怎么办(thinkphp页面错误)
-
thinkphp5出现500错误,如下图所示:相关推荐:《ThinkPHP教程》require():open_basedirrestrictionineffect.File(/home/ww...
- Thinkphp5.0极速搭建restful风格接口层
-
下面是基于ThinkPHPV5.0RC4框架,以restful风格完成的新闻查询(get)、新闻增加(post)、新闻修改(put)、新闻删除(delete)等server接口层。1、下载Thin...
- 基于ThinkPHP5.1.34 LTS开发的快速开发框架DolphinPHP
-
DophinPHP(海豚PHP)是一个基于ThinkPHP5.1.34LTS开发的一套开源PHP快速开发框架,DophinPHP秉承极简、极速、极致的开发理念,为开发集成了基于数据-角色的权限管理机...
- ThinkPHP5.*远程代码执行高危漏洞手工与升级修复解决方法
-
漏洞描述由于ThinkPHP5框架对控制器名没有进行足够的安全检测,导致在没有开启强制路由的情况下,黑客构造特定的请求,可直接GetWebShell。漏洞评级严重影响版本ThinkPHP5.0系列...
- Thinkphp5代码执行学习(thinkphp 教程)
-
Thinkphp5代码执行学习缓存类RCE版本5.0.0<=ThinkPHP5<=5.0.10Tp框架搭建环境搭建测试payload...
你 发表评论:
欢迎- 一周热门
- 最近发表
-
- MySQL5.5+配置主从同步并结合ThinkPHP5设置分布式数据库
- thinkphp5多语言怎么切换(thinkphp5.1视频教程)
- 基于 ThinkPHP5 + Bootstrap 的后台开发框架 FastAdmin
- Thinkphp5.0 框架实现控制器向视图view赋值及视图view取值操作示
- thinkphp5实现简单评论回复功能(php评论回复功能源码下载)
- ThinkPHP框架——实现定时任务,定时更新、清理数据
- BeyongCms系统基于ThinkPHP5.1框架的轻量级内容管理系统
- YimaoAdminv3企业建站系统,使用 thinkphp5.1.27 + mysql 开发
- ThinkAdmin-V5开发笔记(thinkpad做开发)
- thinkphp5.0.9预处理导致的sql注入复现与详细分析
- 标签列表
-
- mybatis plus (70)
- scheduledtask (71)
- css滚动条 (60)
- java学生成绩管理系统 (59)
- 结构体数组 (69)
- databasemetadata (64)
- javastatic (68)
- jsp实用教程 (53)
- fontawesome (57)
- widget开发 (57)
- vb net教程 (62)
- hibernate 教程 (63)
- case语句 (57)
- svn连接 (74)
- directoryindex (69)
- session timeout (58)
- textbox换行 (67)
- extension_dir (64)
- linearlayout (58)
- vba高级教程 (75)
- iframe用法 (58)
- sqlparameter (59)
- trim函数 (59)
- flex布局 (63)
- contextloaderlistener (56)