Contents

Views 748 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);
    }
}



?

  1. [ios][swift] 초간단 To-do Memo

    Date2016.06.27 CategoryDevelop Byhooni Views1063
    Read More
  2. [ios][swift] 초간단 카달로그 앱 (Catalog App)

    Date2016.06.27 CategoryDevelop Byhooni Views7120
    Read More
  3. 영어. 반드시 외워야 할 단어

    Date2016.07.07 CategoryEtc Byhooni Views1964
    Read More
  4. 영어. 반드시 외워야 할 영어 숙어

    Date2016.07.07 CategoryEtc Byhooni Views6329
    Read More
  5. [ios] 새로 만들고 있는 DateMemo

    Date2016.07.12 CategoryDevelop Byhooni Views600
    Read More
  6. [ios] Crashlytics, Fabfic 설치/설정

    Date2016.07.21 CategoryDevelop Byhooni Views724
    Read More
  7. [c] 파일명 또는 특정 패턴을 적용

    Date2016.08.03 CategoryDevelop Byhooni Views748
    Read More
  8. [android] Android N requires the IDE to be running with Java 1.8 or later 오류

    Date2016.08.30 CategoryDevelop Byhooni Views684
    Read More
  9. 삼성페이(Samsung Pay) 구조

    Date2016.09.09 CategoryPPT Byhooni Views923
    Read More
  10. [c] 셀프 넘버(Self Number) 구하기

    Date2016.09.09 CategoryDevelop Byhooni Views2260
    Read More
  11. [c] Mac OS 에 gmp(gmp.h) 라이브러리 설치

    Date2016.10.03 CategoryDevelop Byhooni Views1206
    Read More
  12. [c] RSA 암호화 구현(gmp 라이브러리 활용)

    Date2016.10.03 CategoryDevelop Byhooni Views880
    Read More
Board Pagination Prev 1 ... 81 82 83 84 85 86 87 88 89 90 ... 98 Next
/ 98