일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- preprocessing
- SERIAL
- stream
- wpf
- Read
- parameter
- digitalRead
- file access
- Overloading
- Binary
- Barcode
- Encapusulation
- memory
- UNO
- inheritance
- Class
- Android
- compare
- aduino
- Contour
- mfc
- public
- atmega328
- APP
- Unity
- java
- flutter
- length
- Pointer
- sensor
- Today
- Total
폴크(FOLC)
MFC 테크닉 - FTP FileUpload ( FtpConnection ) 본문
# FTP : File Transfer Protocol은 TCP/IP 프로토콜을 가지고 있어서 서버(HOST)와 모듈(CLIENT) 사이의 파일 송/수신
> TCP/IP 프로토콜 테이블의 응용 계층
> 운영 체제가 그래픽 사용자 인터페이스를 갖추기 이전에 개발된 명령 줄 프로그램
> 대부분의 윈도우, 유닉스, 리눅스 운영 체제에 기본 포함되어 있다.
# 소스 코드
bool FileUpload(CString host, CString user_id, CString user_pw, int port, int passive, CString local, CString remote)
{
try
{
CInternetSession m_session;
m_session.SetOption(INTERNET_OPTION_CONNECT_TIMEOUT, 1000);
m_session.SetOption(INTERNET_OPTION_SEND_TIMEOUT, 1000);
m_session.SetOption(INTERNET_OPTION_RECEIVE_TIMEOUT, 1000);
CFtpConnection *pConnection = m_session.GetFtpConnection(host, user_id, user_pw, (INTERNET_PORT)port, passive);
if(pConnection)
{
if(pConnection ->PutFile(local, remote) == TRUE)
return true;
}
}
catch (...)
{
}
return false;
}
'C, C++, MFC > C, C++, MFC 테크닉' 카테고리의 다른 글
MFC 테크닉 - Zip 파일 생성 ( info-zip ) (0) | 2021.12.22 |
---|---|
MFC 테크닉 - FTP FileDownload ( FtpConnection (0) | 2021.12.21 |
MFC 테크닉 - NetworkDrive (0) | 2021.12.19 |
MFC 테크닉 - 시리얼 통신 ( RS232 ) (0) | 2021.12.14 |
MFC 테크닉 - 로그 기록하기 ( spdlog ) (0) | 2021.12.13 |