먼저 몇 가지 API에 대해 알아봅시다
_getcwd
현재 작업 디렉터리를 가져옵니다.
char *_getcwd( char *buffer, int maxlen );
buffer
경로의 저장 위치.
maxlen
문자로 표시되는 경로의 최대 길이: _getcwd의 경우 char, _wgetcwd의 경우 wchar_t.
알기 쉬움: 버퍼가 경로임
maxlen : 길이입니다
현재 프로그램의 경로를 가져오는 함수
다음 API
URLDownloadToFile 함수
인터넷에서 비트를 다운로드하여 저장합니다.
char *_getcwd( char *buffer, int maxlen ); wchar_t *_wgetcwd( wchar_t *buffer, int maxlen );
다음 코드는
#include <Windows.h> #include <stdio.h> #include <direct.h> #pragma comment(lib,"URlmon") int main() { char buffer[MAX_PATH]; _getcwd(buffer, MAX_PATH); strcat_s(buffer, "//1.jpg"); HRESULT Result = URLDownloadToFileA(NULL, "http://112.22.245.11:443/down/de0243d60205717a2a74aea53c0c500c-46353/1.jpg?cts=yd-f-U13274580& ctp=111A23A228A125&ctt=1484747960&limit=1&spd=1300000&ctk=4ab73a4a76e47ad0b181d0f9fc47b6a1&chk=de0243d60205717a2a74aea53c0c500c-46353", buffer, 0, NULL); switch (Result) { case S_OK:printf("The download started successfully.\n");break; case E_OUTOFMEMORY: printf("The buffer length is invalid, or there is insufficient memory to complete the operation.\n"); break; } return 0; }
입니다. 실행 중인 프로그램의 내용:
위는 파일 다운로드를 쉽게 구현하기 위한 C/C++ 내용입니다. 더 많은 관련 내용은 PHP 중국어 홈페이지(www.kr)를 참고해주세요. .php.cn)!