Contents

조회 수 2412 댓글 0
Atachment
첨부 '1'
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

사진 파일 정렬하고 차례대로 넘버링 하려고 만듦 ㅋㅋ


#include <stdio.h>
#include <unistd.h>
#include <dirent.h>
#include <string.h>

int main(){
    DIR *dir_info;
    struct dirent *dir_entry;
    char new_name[128];
    int i;

    //mkdir( "test_A"     , 0755);

    dir_info = opendir( ".");

    if ( NULL != dir_info){
        //while( (dir_entry = readdir( dir_info)) ){
        for(i =0; (dir_entry = readdir( dir_info)); i++){
            if( strstr(dir_entry->d_name, ".jpeg") > 0 ){
                printf( "%s\n", dir_entry->d_name);

                memset(new_name, 0x00, 128);
                sprintf(new_name, "IMG_%04d.JPG", i);
                rename(dir_entry->d_name, new_name);
            }
        }
        closedir( dir_info);
    }
}



?

  1. [c] 간단한 점 이동 샘플 소스코드

    Date2013.04.23 CategoryDevelop Byhooni Views7984
    Read More
  2. [js] 윤동이가 만든 영어 학습(?) 프로그램

    Date2013.04.23 CategoryDevelop Byhooni Views7978
    Read More
  3. [php] 빔 프로젝터 예약 프로그램.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7977
    Read More
  4. [php] 논문 관리 프로그램.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7977
    Read More
  5. 도메인 관련 솔루션 분석할 거.. ㅋㄷ

    Date2013.04.23 CategoryDevelop Byhooni Views7976
    Read More
  6. [c++] 템플릿(Template) 예제 소스..

    Date2013.04.23 CategoryDevelop Byhooni Views7974
    Read More
  7. [js] 숫자만 입력하게 하는 자바스크립트

    Date2013.04.23 CategoryDevelop Byhooni Views7973
    Read More
  8. 라이브러리에 대한 설명 (static & dynamic library)

    Date2013.04.23 CategoryDevelop Byhooni Views7970
    Read More
  9. [web] 웹 연동 프로그램 모음..

    Date2013.04.23 CategoryDevelop Byhooni Views7966
    Read More
  10. [c++] mfc로 만든 인테리어 수납 시스템(2D기반 설계)

    Date2013.04.23 CategoryDevelop Byhooni Views7962
    Read More
  11. [c++] template 사용예

    Date2003.04.23 CategoryDevelop Byhooni Views7961
    Read More
  12. [js] 양원님이 공유해 주신 유료(5$란다ㅋ) 자료 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7948
    Read More
Board Pagination Prev 1 ... 45 46 47 48 49 50 51 52 53 54 ... 71 Next
/ 71