Page 1 of 1

Ability to copy path and/or entire error message

Posted: 2015-08-13, 13:08 UTC
by Valentino
I was copying directory and got error message:
--------
Total Commander
--------
Error: Cannot read c:\path\file\name!
--------
Skip Retry
Skip all Abort
--------
It would be nice if in such dialogs Ctrl+C copied title/message/buttons to Clipboard, as it is done in standard Windows message boxes.
At the moment I had to compose above "quote" manually :)

It is useful when the path is long and user needs to investigate what's wrong with it.
For this scenario it would be even more useful if user could copy just full file path, not entire message. This can be easily achieved if file location is placed in separate read-only editbox, example Windows resource file:

Code: Select all

EDITTEXT id,x,y,width,height,ES_READONLY|ES_LEFT|ES_MULTILINE|NOT WS_BORDER
In this case, user can select all or part of the path and press Ctrl-C or right-click and select Copy from context menu. So Windows does all the work :)