1.
그냥그냥 모아놓으면 어차피 내 소스니깐 내가 쓰기 편해서 지속적으로 올려 놓을 생각이다.
2.
키워드 : 파일, 폴더, 생성, 소스, 코드, file, fopen
3.
#include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h>
int main() {
//********************************* // create directory //********************************* struct stat st = {0}; if( stat("com", &st) == -1 ) { mkdir("com", 0700); } else printf("fail\n");
//********************************* // create file //********************************* FILE *fp; char path[100] = "./a"; char character[100] = "hello world\n"; //char path[100] = "~\\folder\\t";
fp = fopen(path, "wb"); fwrite(character, sizeof(char), sizeof(character),fp);
fclose(fp);
//********************************* // print current working directory //********************************* char cwd[1024]; getcwd(cwd, sizeof(cwd)); printf("current working directory \n"); printf("%s\n", cwd);
return 0; } |
tip.
fwrite는 thread safe하지 않다.
'소프트웨어' 카테고리의 다른 글
thread fool에 대해서 알아보자. (0) | 2014.02.28 |
---|---|
[c/c++] fwrite, fread 사용법 (0) | 2014.02.25 |
[c] define으로 함수 선언하기 (0) | 2014.02.25 |
Ctags 설정 및 사용법 (0) | 2014.02.21 |
[펌] zlib를 사용법 (2) | 2014.02.20 |