파일 이름 일괄 변경

🌐
이 기능은 현재 지속적인 개발 중입니다.
🔒

100% 안전한 로컬 처리

서버 업로드 없음 - 파일이 외부로 전송되지 않습니다
브라우저 내부에서만 처리 - 개인정보 100% 보호

📚 파일 이름 변경 가이드

여러 파일의 이름을 규칙에 맞춰 한 번에 변경할 수 있습니다. 아래에서 원하는 기능을 선택하세요.

📝

패턴 모드

새로운 이름 규칙을 만들어 파일명을 완전히 바꿉니다.

예시:
IMG_{N} → IMG_001, IMG_002, IMG_003...
{DATE}_{NAME} → 20240115_photo, 20240115_vacation...

💡 사진 정리, 문서 번호 매기기에 좋습니다

🔄

바꾸기 모드

파일명에서 특정 텍스트를 찾아 다른 텍스트로 변경합니다.

예시:
IMG_001.jpgPhoto_001.jpg

💡 잘못된 접두어 수정, 단어 변경에 유용합니다

삽입 모드

기존 파일명은 유지하고 원하는 위치에 텍스트를 추가합니다.

예시:
photo.jpg2024_photo.jpg (앞에 추가)
photo.jpgphoto_final.jpg (뒤에 추가)

💡 날짜, 버전, 태그 추가에 좋습니다

✂️

제거 모드

파일명에서 불필요한 텍스트, 숫자, 특수문자를 삭제합니다.

예시:
IMG_20240115_001.jpg20240115_001.jpg

💡 카메라가 붙인 접두어 제거에 유용합니다

Aa

대소문자 모드

파일명의 대소문자를 일괄 변환합니다.

예시:
MyPhoto.JPGmyphoto.jpg (소문자)
my photo.jpgMy Photo.jpg (첫글자 대문자)

💡 통일된 파일명 규칙 적용에 좋습니다

📋 패턴 변수 참조표

{N} 순서 번호 (001, 002...)
{NAME} 원본 파일명 (확장자 제외)
{EXT} 확장자 (jpg, png...)
{DATE} 날짜 (설정한 형식)
{TIME} 시간 (HHMMSS)
{YEAR} 연도 (2024)
{MONTH} 월 (01-12)
{DAY} 일 (01-31)
{HOUR} 시 (00-23)
{MIN} 분 (00-59)
{SEC} 초 (00-59)

파일을 여기로 드래그하세요

또는

(여러 파일 선택 가능)

Mastering Batch File Renaming

The Power of Batch Renaming

Manually renaming hundreds of files is not only tedious but prone to errors. Whether you are a photographer organizing thousands of raw images, a developer managing asset files, or simply cleaning up your downloads folder, batch renaming is an essential productivity skill. Files often come with unhelpful names like "DSC_0001.jpg" or "Screen Shot 2024-01-01...". Renaming them to "ProjectA_Meeting_01.jpg" makes them searchable and meaningful.

Renaming Strategies & Best Practices

  • Sequential Numbering: Use zero-padding (e.g., 001, 002) to ensure files sort correctly on all operating systems. Operating systems sort "10" before "2" unless you use padding.
  • Date Prefixes: Starting filenames with YYYY-MM-DD (ISO 8601 standard) ensures that files will always sort chronologically, regardless of when they were modified.
  • Safe Characters: Avoid using spaces or special characters like / \ : * ? " <> | in filenames. Use underscores (_) or hyphens (-) instead for maximum compatibility.

Advanced: Regex & Pattern Matching

For power users, our tool supports "Find and Replace" with advanced logic. You can target specific parts of a filename, such as "remove the first 5 characters" or "replace spaces with underscores". Using variables like {DATE} or {N} allows you to construct dynamic filenames that automatically adapt to each file.

Frequently Asked Questions (FAQ)

Q: Can I undo the renaming?

A: This tool generates a new ZIP file with renamed copies. Your original files on your computer remain untouched, so there is zero risk of data loss. "Undoing" is as simple as deleting the ZIP file.

Q: How many files can I rename?

A: There is no hard limit, but performance depends on your browser and device memory. We have successfully tested renaming thousands of files in a single batch.