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



?

List of Articles
No. Category Subject Author Date Views
405 Etc [link] 유용한 사이트 링크. hooni 2013.08.19 71451
404 System/OS [linux] /etc/fstab 설정 방법.. ㅋㅋ hooni 2013.04.23 12081
403 System/OS [linux] apache, php, jsp 환경설정하기.. hooni 2003.04.23 15232
402 System/OS [linux] APM(apache, php, mysql) + gd 설치순서.. hooni 2003.04.23 18851
401 System/OS [linux] awk 명령어 hooni 2014.03.11 4955
400 System/OS [linux] CentOS 6.5 에서 "Bringing up interface eth0: Determining if ip address 121.78.127.197 is already in use for device eth0..." hooni 2014.04.05 4838
399 System/OS [linux] CentOS 6.x Cati 설치 (yum) hooni 2014.01.17 48594
398 System/OS [linux] CentOS Apache Httpd에 https 적용 hooni 2014.03.05 4480
397 Develop [linux] CentOS Apache 웹서버에 HTTPS 적용 hooni 2015.10.23 783
396 System/OS [linux] CentOS 에 APM 설치하기 hooni 2015.01.02 1690
395 System/OS [linux] CentOS 터미널 언어 설정(한글/영어) hooni 2013.12.22 18513
394 Develop [linux] crond 사용법.. ㅋㅋ hooni 2013.04.23 7246
Board Pagination Prev 1 ... 60 61 62 63 64 65 66 67 68 69 ... 98 Next
/ 98