Software para remover parcialmente o texto dos nomes dos arquivos

1

Estou procurando um software que possa remover algumas partes de nomes de arquivos:

, ou seja, very_long_name.jpg a name.jpg

    
por Chris 28.12.2009 / 20:55

6 respostas

0

Assumindo um sistema operacional Windows, eu gosto de Ken Renomear para essa finalidade.

    
por 28.12.2009 / 21:01
4

Este arquivo bat fará o truque;

for %%i in (very_long_*.jpg) do (set fname=%%i) & call :rename
goto :eof
:rename
rename %fname% %fname:~10%

em que "10" é o tamanho do prefixo que você deseja remover. (Neste caso, "muito_long_"). Testado no Windows 7.

    
por 28.12.2009 / 22:03
1

Teste ReNamer , que é meu freeware de renomeação favorito.

ReNamer is a small, yet very flexible file and folder renamer, that offers all the standard renaming procedures, including prefixes, suffixes, replacements, case changes as well as advanced options and support for Unicode file names. In addition, it can also remove brackets, add number sequences, remove digits or symbols and change file extensions. The program allows you to combine multiple renaming actions as a rule set, applying each action in logical sequence. Renamer supports 60 different meta fields, including EXIF, ID3 and others, that can be used as part of the new file name. Advanced users can use PascalScript to program their own renaming rules.

    
por 28.12.2009 / 21:43
1

O meu favorito é o Lupas Rename , que na minha opinião é o swiss-knife dos renamers:

    
por 28.12.2009 / 22:07
1

Windows:

O Multi File Renamer é de código aberto e funciona no Windows 7.

Mac:

Nome Mangler é freeware.

Nota: a plataforma não especificada, então eu forneci duas opções.

    
por 28.12.2009 / 22:38
1

Outra opção que tenho usado no Windows por um bom tempo é Renomear o mestre .

Do site:

This utility will add, remove, or replace parts of the filename with ease and also supports renaming via file properties, MP3 tags, JPEG JFIF and EXIF tags, and text files. Batch renaming that's simple to use, yet still very powerful.

Rename Master Screenshot

Features
- Intelligent number sorting
- JPEG/MP3 tag support and many more Meta-Variables
- Auto-Preview support
- "Scipts" to save commonly used renaming options
- [*] and [?] command prompt style wildcards for replacing and remove options
- "Undo" button so a renaming operation can be rolled back
- Floating thumbnail window for viewing pictures and optional thumbnail file list view
- Optional Explorer integration for right-clicking on folders or using "Send To"

O melhor de tudo, não há arquivo de instalação, por isso é portátil para sistemas Windows.

    
por 08.01.2010 / 04:02