Page 1 of 1

Keep newly added files selected

Posted: 28.11.2021, 10:22
by Alokin
Since I could not find anything about it in the forum or in preferences:
If I add new files to a folder, I want the new file to be selected, once I drop it.
In my case I am adding pictures in folders that already have many files in them. I drag them from the browser into the folder. Once I have dropped them, I want to rename them. At the moment I have to know the file name, and search/look for it.

In the normal windows explorer, such a new file is selected once I have dropped it.

Re: Keep newly added files selected

Posted: 28.11.2021, 15:36
by Dreamer
Workaround:

https://freecommander.com/fchelpxe/en/Refresh.html
Add new items at the end of the list

If this setting is checked, new items are added at the bottom of the list instead of being sorted immediately.
The files are not selected, but they are at the bottom, so you can select them easily.

Re: Keep newly added files selected

Posted: 05.12.2021, 10:17
by Alokin
Thank you, that works! I also used a workaround now, by sorting by the date of creation.

Re: Keep newly added files selected

Posted: 05.12.2021, 13:26
by Dreamer
Another way to go to new file is the option "Focus newest file" Ctrl+End, it's possible to create a toolbar button too.

Re: Keep newly added files selected

Posted: 19.12.2021, 12:16
by Alokin
Thanks, that is the best solution!

Re: Keep newly added files selected

Posted: 19.12.2021, 16:18
by horst.epp
I use a button which starts a batch file.
This batch positions the cursor in the current FC window onto the newest entry
regardless of the current sort order.

The batch file NewestFile.cmd looks like this

Code: Select all

FOR /F "usebackq delims==" %%G IN (`dir /b /a-d /o-d`) DO C:\Tools\FreeCommander\FreeCommander.exe /c "%1\%%G" &EXIT
The favorite button in my case
Screenshot - 19.12.2021 , 16_13_53.png