Hello,
In a dual lister, i try to copy from my source lister which is windows 'trash' folder to another destination folder.
If I use only Standard Function (Dopus or external) = 'Copy' it is working well.
But if i use RunCommand("Copy") in a script it is not working (nothing is happening).
And the RunCommand is working well for other source folder, so there seems to be an issue when this source folder is Windows Trash special folder.
Here is the simple script used for this example.
function OnClick(clickData)
{
var cmd = clickData.func.command;
cmd.RunCommand("Copy");
}
Is there a way to be able to use Copy command (and move) in a script when source is windows trash special folder ?
Also i'm wondering why Standard Function is working and the same function inside a script is not.
(nota : i really need to do this in a script because i have a more complex behavior in my real world script).
Thx in advance,
Cheers
Antoine