Contents

조회 수 742 댓글 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. [android] Android N requires the IDE to be running with Java 1.8 or later 오류

  2. [c] 파일명 또는 특정 패턴을 적용

  3. [ios] Crashlytics, Fabfic 설치/설정

  4. [ios] 새로 만들고 있는 DateMemo

  5. [ios][swift] 초간단 카달로그 앱 (Catalog App)

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

  7. [ios][swift] 초간단 TableView 샘플

  8. [ios] 웹뷰 history.back() ㅋㄷ

  9. [ios] 기본 네비게이션바의 타이틀, back버튼 위치와 속성 변경

  10. [ios] UUID 생성 + Key Chain 연동

  11. [c#] 전자금융보안론 발표/설치 자료(툴바 소스코드)

  12. XE Core 1.8.18 본문 작성시 태그(html) 사라지는 버그

Board Pagination Prev 1 ... 3 4 5 6 7 8 9 10 11 12 ... 71 Next
/ 71