Select files after extraction

Can you set the selection of the extracted file after decompression? If there are many files, I often cannot find them after extracted

The general Preferences / File Operations / Copying Files / Automatically select newly copied files option will do that, but not for all methods of extraction.

From a quick test, it works with the Archive Files > Extract to Destination and similar ...Destination Folders commands.

Wouldn't it be safer to create a new target folder? This would avoid overwriting or mixing with existing items and still allow you to easily move the files to their final destination.

Not exactly what the OP sought but perhaps helpful.

Put this code in a button. It creates in the active file display a new folder named after the archive with the archived contents.

@disablenosel:files,type=*.(zip|rar|7z)
function OnClick(clickData)
{
	var cmd = clickData.func.command;
	cmd.AddLine("Copy EXTRACT=sub HERE");

	if (clickData.func.sourcetab.selected_files.count > 0)
	{
		var realPath = clickData.func.sourcetab.selected_files(0).realpath;
		var extractPath = DOpus.FSUtil.NewPath(realPath);
		if (extractPath.Parent())
		{
			extractPath.Add(realPath.stem_m);

			cmd.AddLine("Go \"" + extractPath + "\"");
		}
	}

	cmd.Run();
}