Moving files in C folder to B folder in A > B > C folder structure

Hello,

Context: I have 1 big folder “A”, which has lots of subfolders “B” (each B folder has a different name), which they themselves have C folders (each C folder has the same name) in which there are files.

The structure here is: A > B (different names) > C > files

I want to create a button to move all files from the C folders to the B folders, then delete the empty C folders in one go, whilst having the viewer in folder A.

I tried “Copy MOVE TO=..”, but this only works if I select the files while having the viewer in folder C.

I want to be able to select all B folders from folder A, run the button and have it work from there.

Any help would be much appreciated, thank you so much

Try

@output:Copy MOVE FILE={filepath}The-C-Folder\* TO={filepath}
@output:Delete FILE={filepath}The-C-Folder

If you like what you see in the logs, remove @output:.

Works great! Thank you :grinning_face: