📄 ftpmain.c
字号:
#include <stdio.h>
#include <string.h>
#include <conio.h>
#include "tcplib.h"
//========================================================
int main(void)
{int rc;
//setcurrentpath("c:\\ehttp");
init_tcplib();
settcpdebug(0);
setftpuserpass("","",0); //Start a FTP server
setftpuserpass("hls","hls",2);
setftptime(60,180);
startftp();
while (1)
{if (kbhit()) if (getch() == 27) return 0;
rc=checkftp(); //Monitoring FTP user login
if (rc==1) Serveftp();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -