728x90
#include <urlmon.h>
#include <iostream>
#pragma comment(lib, "urlmon.lib")
int main() {
//url to crawling
const char base[] = "https://data1.pokemonkorea.co.kr/newdata/pokedex/full/";
//folder path to save
//If the folder doesn't exist, you have to create it.
const char source[] = "D:\\img\\";
char buf[1024], path[1024];
int cnt = 1;
// 테스트 할 때 과부하가 걸리므로 89301을 1000 정도로 수정하자
for (int i = 101; i < 89301 + 100; i += 100) {
//
sprintf_s(buf, "%s%.6d.png", base, i);
sprintf_s(path, "%s%d.png", source, cnt);
URLDownloadToFileA(0, buf, path, 0, 0);
std::cout << buf << " saved image in " << path << std::endl;
cnt += 1;
}
}
사용된 헤더파일 라이브러리 함수 설명
'my_lesson > _C++' 카테고리의 다른 글
C++ - Array_For_BingoGame ver 1.0 (0) | 2019.04.27 |
---|---|
C++ - Array_For_numberPuzzleGame ver 1.0 (0) | 2019.04.26 |
C++ - For 반복문 별그리기 ver 1.0 , ver 1.1 (0) | 2019.04.24 |
C++ - Embeding Python3.7.3 in CPP project (0) | 2019.04.16 |
C++ - Array_For_LottoGame Ver 1.2 functional (0) | 2019.04.10 |
댓글