Yahoo Groups archive

The Logic Off Topic list

Index last updated: 2026-04-28 23:27 UTC

Thread

I need an automated method of changing file names, deleting the .aiff from 1000's of files

I need an automated method of changing file names, deleting the .aiff from 1000's of files

2006-08-26 by Roman Pirie

I have many drum samples. They all have the .aiff name on the end of 
each file. I need to delete the '.aiff' from multiple files at a time.
At the moment I am double clicking on each file name in a finder window 
and manually deleting the appendage .aiff.
It takes ages. Is there a better way.
I'm on a G5 OSX10.3.9.
Thanks,
Roman Pirie.

Re: [L-OT] I need an automated method of changing file names, deleting the .aiff from 1000's of files

2006-08-26 by Hans Hafner

At 18:44 Uhr +1200 26.08.2006, Roman Pirie wrote:
>I have many drum samples. They all have the .aiff name on the end of
>each file. I need to delete the '.aiff' from multiple files at a time.
>At the moment I am double clicking on each file name in a finder window
>and manually deleting the appendage .aiff.

There's "A Better Finder Rename" - not much experience with it.

And there is File Buddy - the best utility for dealing with a large amount of files.

Check http://www.versiontracker.com for the latest version.

Cheers
Hans

Re: I need an automated method of changing file names,

2006-08-30 by Laurent Cerveau

Message posted by Laurent Cerveau <lcerveau@...>:

The a little bit non conventional way : Applescript

The computer geek, non user oriented but totally free and fast method in Terminal

ls -1 *.aiff | awk '{print "mv "$1" "$1}' | sed s/.aiff//2 | sh

To rename all .aiff to .aif

ls -1 *.aiff | awk '{print "mv "$1" "$1}' | sed s/.aiff/.aif/2 | sh

etc...

Move to quarantaine

This moves the raw source file on disk only. The archive index is not changed automatically, so you still need to run a manual refresh afterward.