반응형
웹 정보 가져오기
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
int main(void)
{
if( access("/tmp/hong.html", F_OK) == 0 )
system("rm -rf /tmp/hong.html");
system("wget -P /tmp -O /tmp/hong.html http://hong00.tistory.com");
FILE *fp = NULL; fp = fopen("/tmp/hong.html", "r");
if( fp != NULL )
{
char temp[255] = ;
char *pstr = NULL;
while( !feof(fp) )
{
pstr = fgets( temp, sizeof(temp), fp );
printf("%s\n", temp);
}
fclose(fp);
fp = NULL;
}
else
{
printf("error\n");
}
return 0;
}
반응형
'C, C++' 카테고리의 다른 글
[c++] raw string literal (원시 문자열 리터럴) (0) | 2022.08.24 |
---|---|
[c/c++] exit 함수 (0) | 2022.08.10 |
[cmake] cmake 사용법 (조건문, 출력, STREQUAL, option, FATAL_ERROR) (0) | 2021.12.27 |
[c++] 순수 가상 함수 (0) | 2021.10.28 |
[cmake] cmake 사용법 (0) | 2018.05.31 |
댓글