Contents

Views 2404 Comment 0
Atachment
Attachment '1'
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

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


#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);
    }
}



?

List of Articles
No. Category Subject Author Date Views
1033 Develop [matlab] 정보은닉 스테가노그래피(Steganography) 수업 file hooni 2016.10.03 2712
1032 Develop [c] RSA 암호화 구현(gmp 라이브러리 활용) file hooni 2016.10.03 2741
1031 Develop [c] Mac OS 에 gmp(gmp.h) 라이브러리 설치 hooni 2016.10.03 5055
1030 Develop [c] 셀프 넘버(Self Number) 구하기 1 hooni 2016.09.09 3823
1029 PPT 삼성페이(Samsung Pay) 구조 file hooni 2016.09.09 2792
1028 Develop [android] Android N requires the IDE to be running with Java 1.8 or later 오류 hooni 2016.08.30 2777
» Develop [c] 파일명 또는 특정 패턴을 적용 file hooni 2016.08.03 2404
1026 Develop [ios] Crashlytics, Fabfic 설치/설정 hooni 2016.07.21 2356
1025 Develop [ios] 새로 만들고 있는 DateMemo file hooni 2016.07.12 1893
1024 Etc 영어. 반드시 외워야 할 영어 숙어 2 file hooni 2016.07.07 8101
1023 Etc 영어. 반드시 외워야 할 단어 file hooni 2016.07.07 3994
1022 Develop [ios][swift] 초간단 카달로그 앱 (Catalog App) file hooni 2016.06.27 14307
Board Pagination Prev 1 ... 8 9 10 11 12 13 14 15 16 17 ... 99 Next
/ 99