Hi, I've searched through renaming and it's all rather complicated normally requiring user input etc. Could anyone point me in the right direction for doing the following:
I have audio files that are named with a _01 to _13 at the end of each name
This relates to the chromatic scale in music (they are sample) so
So - _01 should be _C
_02 should be _C#
_03 should be _D
etc etc
Either of the two revisions of that macro at the end of Rename Files Mystery (although the Perl version has worked better than the JavaScript version for me). These enable regular expressions (which you don't need in this case).
Hi @Skipstream, you might want to take a look at this discussion Deleting from a file name where I very recently posted a macro that is virtually the same as outlined in @peternlewis' steps above.
You would need to edit the search and replace regex strings in my macro as per Peter's instructions but that shouldn't be too hard for you to try.
Hello @tiffle , thank you for you for the suggestion and macros download.
I replaced sections, but I've yet to have have successfully run the execution command.
The goal is to highlight folder names (not files) and utilize the hot key 'command V' to paste their names elsewhere. It is seemingly simple, yet, perhaps I've overlooked a detail in this macros.
Good question! If only I understood what it is that you are trying to achieve. The macro you've posted is very confusing as you have a loop (for...each) that does nothing with the loop variable (VarName).
Can you describe the steps please that you'd do manually so I can get a better idea. Something like:
1 Select some folders in Finder
2 etc.
Or even provide two screenshots showing the before and after situations.
Here you can see a set of folders all titled individually. On the right hand side you can see untitled folders needing the exact names from the highlighted left hand selection. The goal is to batch rename the folders on the right with the names from the left hand side.
If it were possible to create empty folders with the former names, then perhaps this execution would be better compared to running a batch copy and paste (rename) functionality. But the key is that only the names are copied and not the contents within the folders.
That's actually a bad assumption ... doing a batch creation with identical titles is a three-action macro. Action one is For Each, then inside that, an action that extracts a folder name, and another that creates a new folder. Here's a demo:
Macros are always disabled when imported into the Keyboard Maestro Editor.
The user must ensure the macro is enabled.
The user must also ensure the macro's parent macro-group is enabled.
System information
macOS 14.4.1
Keyboard Maestro v11.0.2
Note that you'll need to edit the last action to specify the destination, and that this is just a stub of a macro: There's no error checking, you probably want to specify folders differently, etc. But it works: Create a new empty folder, put the path to that empty folder in the last action, select a bunch of folders in Finder, then launch the macro. When it's done (quite quickly), the new folder will have empty folders matching the names of those in the selection.
As @griffman said - that's an incorrect assumption.
Here's my example macro to do the job. It's similar to @griffman's but it ensures only folders are processed (so if you've selected some files they are ignored) and you need to set the target folder in the red action. As an exercise, you could replace this with a Prompt for User Input or similar action to specify the target folder.
It's rather simplistic, with no error checking in case eg you've selected files as well, but it's easily tweaked and should give you a good starting point to make it your own.
Edit: Beaten to the punch by the gurus -- again! But I think I win the "least actions used" prize
That'd have to be an exclusionary qualifying rule: No JavaScript, AppleScript, or Shell Script actions :). Probably also have to exclude Custom HTML Prompts.
Because otherwise I completely agree—we'd be handing the trophy to @ComplexPoint today!
I would love to learn JavaScript in more detail, and it's on my list. But I never manage to quite make the time for it, and even if I do, my "old dog" brain has troubles grasping most of it.
I love the stuff you post, but only understand about 5% of it. It's incredible what it can do, though.
Light functions with their own name-space, for defining local names. (i.e. simple functions with curly brackets)
const circumference = r => {
const c = 2 * Math.PI;
return c * r;
};
Generator functions, with the function keyword trailing an asterisk
(() => {
"use strict";
// repeat :: a -> Generator [a]
const repeat = function* (x) {
while (true) {
yield x;
}
};
// take :: Int -> Gen [a] -> [a]
const take = n =>
// The first n elements of a non-finite list.
xs => Array.from(
{length: n},
() => {
const x = xs.next();
return x.done
? []
: [x.value];
}
)
.flat();
return take(5)(
repeat("hello")
)
.join(" ");
})();
NOTE
We used to need the old heavy-weight function keyword in cases where access to an arguments vector was useful.
Now we can use the three dot spread operator when a definition needs to to refer to a list of arguments:
Expand disclosure triangle to view JS source
(() => {
"use strict";
// PHI – Golden Ratio
const main = () =>
compose(
succ,
half,
pred,
sqrt
)(5);
// --------------------- GENERIC ---------------------
// compose (<<<) :: (b -> c) -> (a -> b) -> a -> c
const compose = (...fs) =>
// A function defined by the right-to-left
// composition of all the functions in fs.
fs.reduce(
(f, g) => x => f(g(x)),
x => x
);
const half = x => x / 2;
const pred = x =>
x - 1;
const sqrt = n =>
0 <= n
? Math.sqrt(n)
: undefined;
const succ = x =>
1 + x;
// MAIN ---
return main();
})();
The question by amory should probably have been a new topic which would aid in getting a better result.
After that, the digression on to a discussion of macro styles and lambdas has completely confused the topic making it very hard for Amory to actually get an understanding of the macro. I'd clean it up, but it doesn't have a clear topic to go to. But please consider the best way to handle digressions before wandering off in to the weeds, no matter how interesting those digressions might be.
Amory - if you want to batch create folders with a set of names (from another selected folder), then you can do that more easily than batch renaming existing folders. Do your “untitled folder copy N” folders have contents in them already, or are they intended to be empty?
If they are intended to be created empty, then my approach would be to:
Select the desired source folder names, and then trigger the macro.
The macro:
Saves the FinderSelections token value to get the list of folder names.
Puts up an Alert asking you to select the destination folder.