Keep selection after Multi-Rename
Moderators: Hacker, petermad, Stefan2, white
Keep selection after Multi-Rename
Hi *.*,
I'd like to suggest for TC to keep files selected after they are renamed using the Multi-Rename Tool. I usually select a bunch of files, rename them using the MRT and then I want to copy them somewhere but I can't, first I have to select them again because the selection is lost after closing the MRT.
Thanks for considering.
Roman
I'd like to suggest for TC to keep files selected after they are renamed using the Multi-Rename Tool. I usually select a bunch of files, rename them using the MRT and then I want to copy them somewhere but I can't, first I have to select them again because the selection is lost after closing the MRT.
Thanks for considering.
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
Re: Keep selection after Multi-Rename
After an MRT there may be no longer the same file names available
to restore the selection.
to restore the selection.
Windows 11 Home, Version 24H2 (OS Build 26100.4351)
TC 11.55 RC6 x64 / x86
Everything 1.5.0.1395a (x64), Everything Toolbar 1.5.5.0, Listary Pro 6.3.2.88
QAP 11.9.0.3 x64
TC 11.55 RC6 x64 / x86
Everything 1.5.0.1395a (x64), Everything Toolbar 1.5.5.0, Listary Pro 6.3.2.88
QAP 11.9.0.3 x64
Re: Keep selection after Multi-Rename
Horst.Epp,
Yes, that is exactly the problem.
Roman
Yes, that is exactly the problem.
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
Re: Keep selection after Multi-Rename
So you want that TC adapts the previous selction to the new names after the MRT and restores this ?
Windows 11 Home, Version 24H2 (OS Build 26100.4351)
TC 11.55 RC6 x64 / x86
Everything 1.5.0.1395a (x64), Everything Toolbar 1.5.5.0, Listary Pro 6.3.2.88
QAP 11.9.0.3 x64
TC 11.55 RC6 x64 / x86
Everything 1.5.0.1395a (x64), Everything Toolbar 1.5.5.0, Listary Pro 6.3.2.88
QAP 11.9.0.3 x64
Re: Keep selection after Multi-Rename
Extremely popular suggestion in my poll (well, ok 19 votes at the moment) https://www.ghisler.ch/board/viewtopic.php?t=49294
as mentioned "the filenames are already in memory for use with the "Undo" function" so they are available to use one way or another
as mentioned "the filenames are already in memory for use with the "Undo" function" so they are available to use one way or another
F4MiniMenu (Forum) - Open selected file(s) from TC in defined editor(s) - A (minimalistic) clone of F4Menu
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Re: Keep selection after Multi-Rename
Horst.Epp,
hi5,
Roman
Yes, exactly.So you want that TC adapts the previous selction to the new names after the MRT and restores this ?
hi5,
20well, ok 19 votes at the moment

Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
Re: Keep selection after Multi-Rename
F4MiniMenu (Forum) - Open selected file(s) from TC in defined editor(s) - A (minimalistic) clone of F4Menu
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Re: Keep selection after Multi-Rename
Support++
That would be very helpful in some situations...
That would be very helpful in some situations...
Re: Keep selection after Multi-Rename
Support++
License #1945
Windows 10 Pro x64
Version 22H2 (OS Build 19045.3930)
TC 11.00 x64 and x86, Everything 1.5.0.1366a x64, QAP 11.6.3.1 x64
Windows 10 Pro x64
Version 22H2 (OS Build 19045.3930)
TC 11.00 x64 and x86, Everything 1.5.0.1366a x64, QAP 11.6.3.1 x64
Re: Keep selection after Multi-Rename
Support++
- ghisler(Author)
- Site Admin
- Posts: 50840
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
Re: Keep selection after Multi-Rename
It's unfortunately not that easy - the user could use multiple rename steps, undo some of them, and each time some files may not be renamed...
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
Re: Keep selection after Multi-Rename
Hacker wrote: 2023-05-02, 14:27 UTC Hi *.*,
I'd like to suggest for TC to keep files selected after they are renamed using the Multi-Rename Tool. I usually select a bunch of files, rename them using the MRT and then I want to copy them somewhere but I can't, first I have to select them again because the selection is lost after closing the MRT.
Thanks for considering.
Roman
ghisler(Author) wrote: 2023-05-04, 09:25 UTC It's unfortunately not that easy - the user could use multiple rename steps, undo some of them, and each time some files may not be renamed...
Maybe TC could export the NewName column and use some SelectFromFile function on click on an new [Select]-button near the [Start!]-button?
?
Re: Keep selection after Multi-Rename
Christian,
Roman
If it is difficult to keep track of the original name -> ... -> final name mapping, I'd be happy if it worked for one-step-renaming only. This could be implemented by checking the last (most recent) Old name -> New name mapping when closing the MRT window.It's unfortunately not that easy - the user could use multiple rename steps, undo some of them, and each time some files may not be renamed
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
Re: Keep selection after Multi-Rename
It shouldn't be that complicated. In the simplest scenario, just have a two-dimensional array. In the first dimension is a list of selected files, and in the second dimension a new name is stored by substitution. Then at the end of all renames, I know the original and new names.Hacker wrote: 2023-05-04, 10:09 UTC Christian,If it is difficult to keep track of the original name -> ... -> final name mappingIt's unfortunately not that easy - the user could use multiple rename steps, undo some of them, and each time some files may not be renamed
But surely a more optimal algorithm can be devised.