Tag -> Tag Always Affecting All Files in View

I have two issues really. The first one is that Tag->Tag is always affecting ALL files in the view, even when only some are selected. How can i get this to run on indivudal files?

I wouldn't actually need an answer to this question if the Tag->Tag was working as expected in the first place! If I run Tag -> Tag and set to [path]%artist%%album% for some reason it is only using the first %artist% and first %album% and applying those values to all files.....

And then when I try to undo Mp3Tag locks up and has to be forced closed....

Really not enjoying using mp3Tag today....

Can you post a screenshot of what you are doing in the Tag>Tag box? It sounds like you are trying to change the directory path name and that will affect all files in that directory.

When I press OK, this is the result.... All files, not just selected file, all moved to a different folder, and a single folder at that. I cannot see how that action has any connection to what I am asking it to do.

The _DIRECTORY changes that path name for ALL files in that path. If you want to manage it by each file use _FILENAME instead.

I WANT to change the path for all files, I want the path to be the artist\album.

This worked with another bunch of files just a few minutes ago.... as per this screenshot:

When you use _DIRECTORY to change the path for any one file, it affects all files in that directory. It is like using explorer to change the name of any folder.

If you use _FILENAME it works at the file level. But you can apply folder level changes using tags and even absolute drive details like for example
D:\%albumartist%\%album%\%track% %title%

Thank you! This was the exact same problem I was having, described here:

I did not realize I could name the directory as I wanted by using the "_FILENAME" parameter. I've mucked up a couple of directories by not being careful, and I was resigned to just having to clean up future mistakes, but this should mitigate almost all of those errors.

So in my case, I changed it from two actions:

Format Value:
"_FILENAME"
%artist% - %album% - $num(%track%,2) - %title%
Format Value:
"_DIRECTORY"
E:\Music\%albumartist%\'['%year%']' %album% '['$upper(%_extension%)']'\

to one action:

Format Value: 
"_FILENAME"
E:\Music\%albumartist%\'['%year%']' %album% '['$upper(%_extension%)']'\%artist% - %album% - $num(%track%,2) - %title%

There is one key difference here between _DIRECTORY and _FILENAME.

The directory function only needs to be done once for any file. But this will rename the folder for ALL files within that same original directory including any that are not music files. Cover art, other images, pdf booklets, and any other files will all get the new directory name.

The filename function works on individual files only. So it will NOT move any other files within that original folder.

I know its been a long time but i finally found some time to test this and thank you, your comment was very helpful.