Teracopy does not pickup drag and drop inside Xyplorer.
-
kartal
- Posts: 208
- Joined: 14 Aug 2008 18:06
Teracopy does not pickup drag and drop inside Xyplorer.
Hi
Is there a way to make teracopy work inside Xyplorer(especially drag and drop version) ? I saw the scripting work around. But that did not work for me somehow. Script does not do anything except it brings a menu of script commands when I run from user commands.
Is anyone using any other copy handler successfully with xplorer under 64bit xp?
I am under 64bit xp using latest Xyplorer.
Is there a way to make teracopy work inside Xyplorer(especially drag and drop version) ? I saw the scripting work around. But that did not work for me somehow. Script does not do anything except it brings a menu of script commands when I run from user commands.
Is anyone using any other copy handler successfully with xplorer under 64bit xp?
I am under 64bit xp using latest Xyplorer.
-
Muroph
- Posts: 561
- Joined: 21 Aug 2007 16:13
Re: Teracopy does not pickup drag and drop inside Xyplorer.
use the right mouse button.kartal wrote:Is there a way to make teracopy work inside Xyplorer(especially drag and drop version) ?
the teracopy options should be on the menu that pops up.
or in "default context menu" or smth like that if you use xy custom context menu (i'm too lazy too check).
looks like the forum software doesn't like lines starting with a single space.kartal wrote:Script does not do anything except it brings a menu of script commands when I run from user commands.
since it's a multi-line script all lines but the first should start with at least one space.
i fixed that on the post.
and check if the path you installed teracopy and the path to teracopy.exe on the script match.
i looked for other apps but couldn't find any that worked.kartal wrote:Is anyone using any other copy handler successfully with xplorer under 64bit xp?
i'd also want to know if there's one out there that works without scripting.
My shared scripts:
TeraCopy Integration, Tag Manager, Comments Menu, Text Replacer, Image and Media Tools, Checksum Calculator, Video Calculator
only 5 URLs are allowed on the sig...
TeraCopy Integration, Tag Manager, Comments Menu, Text Replacer, Image and Media Tools, Checksum Calculator, Video Calculator
only 5 URLs are allowed on the sig...
-
lukescammell
- Posts: 744
- Joined: 28 Jul 2006 13:15
- Location: Kent, UK
- Contact:
Re: Teracopy does not pickup drag and drop inside Xyplorer.
I don't know if XP 64 is like Vista 64, but I don't get any context menus with either 7-Zip or TeraCopy (and no drag and drop with TeraCopy).
In order to get the TeraCopy script working for me I had to use the following in the path - again, might be different in XP64, dunno, give it a go...
In order to get the TeraCopy script working for me I had to use the following in the path - again, might be different in XP64, dunno, give it a go...
Code: Select all
%ProgramW6432%Used to update to the latest beta every day. Now I have children instead…
Windows 10 Pro x64 (everywhere except phone…)
Windows 10 Pro x64 (everywhere except phone…)
-
kartal
- Posts: 208
- Joined: 14 Aug 2008 18:06
Re: Teracopy does not pickup drag and drop inside Xyplorer.
I set the teracopy path properly and it is yet not working for me
When I run teracopy paste, all it does is opening "my computer" with windows explorer 
-
Muroph
- Posts: 561
- Joined: 21 Aug 2007 16:13
Re: Teracopy does not pickup drag and drop inside Xyplorer.
that's a problem with the quotes after xy7.50.01.
you have to triple quote the run command argument.
did you get the fixed version i posted?and you could just use the full path to teracopy.exe's path instead of a system variable (no guessing).
the left MB uses the default copy handler.
i think there's an option to put teracopy items in the normal context menu for files/folders, but i'm not sure.
you have to triple quote the run command argument.
did you get the fixed version i posted?
Code: Select all
run """%programfiles%\TeraCopy\teracopy.exe" $op *"<xypath>\teracopylist.tmp" "$path\""";might be your 64bits version, but i get some teracopy items when i drag and drop using the right mouse button.lukescammell wrote:I don't know if XP 64 is like Vista 64, but I don't get any context menus with either 7-Zip or TeraCopy (and no drag and drop with TeraCopy).
the left MB uses the default copy handler.
i think there's an option to put teracopy items in the normal context menu for files/folders, but i'm not sure.
My shared scripts:
TeraCopy Integration, Tag Manager, Comments Menu, Text Replacer, Image and Media Tools, Checksum Calculator, Video Calculator
only 5 URLs are allowed on the sig...
TeraCopy Integration, Tag Manager, Comments Menu, Text Replacer, Image and Media Tools, Checksum Calculator, Video Calculator
only 5 URLs are allowed on the sig...
-
kartal
- Posts: 208
- Joined: 14 Aug 2008 18:06
Re: Teracopy does not pickup drag and drop inside Xyplorer.
Yes I have tried with fixed version
here is what I have
//save current path. this will be the target folder
set $path, <curpath>;
//restore operation type
getkey $op, teracopyop, tc, "<xypath>\teracopylist.tmp";
//run teracopy.exe using command line parameters
//teracopy.exe [operation] *
here is what I have
//save current path. this will be the target folder
set $path, <curpath>;
//restore operation type
getkey $op, teracopyop, tc, "<xypath>\teracopylist.tmp";
//run teracopy.exe using command line parameters
//teracopy.exe [operation] *
- [target]
run """E:\INCELENECEK_YAZILIMLAR\sistem\TeraCopy1\TeraCopy.exe" $op *"<xypath>\teracopylist.tmp" "$path\""";
status TeraCopy: Paste, 84C400, ready;
-
Muroph
- Posts: 561
- Joined: 21 Aug 2007 16:13
Re: Teracopy does not pickup drag and drop inside Xyplorer.
i was testing the script and noticed that the quotes arround the argument are actually causing the problem.
looks like something changed from v7.60.07 to .08.
try this:
i'll soon post a fixed version (again).
looks like something changed from v7.60.07 to .08.
try this:
Code: Select all
run "E:\INCELENECEK_YAZILIMLAR\sistem\TeraCopy1\TeraCopy.exe" $op *"<xypath>\teracopylist.tmp" "$path\";My shared scripts:
TeraCopy Integration, Tag Manager, Comments Menu, Text Replacer, Image and Media Tools, Checksum Calculator, Video Calculator
only 5 URLs are allowed on the sig...
TeraCopy Integration, Tag Manager, Comments Menu, Text Replacer, Image and Media Tools, Checksum Calculator, Video Calculator
only 5 URLs are allowed on the sig...
-
admin
- Site Admin
- Posts: 66295
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Teracopy does not pickup drag and drop inside Xyplorer.
Yes, that's true, there was a change. It was actually a half-bug that the outer quotes were stripped from lines likeMuroph wrote:i was testing the script and noticed that the quotes arround the argument are actually causing the problem.
looks like something changed from v7.60.07 to .08.
try this:i'll soon post a fixed version (again).Code: Select all
run "E:\INCELENECEK_YAZILIMLAR\sistem\TeraCopy1\TeraCopy.exe" $op *"<xypath>\teracopylist.tmp" "$path\";
Code: Select all
::msg "a" "b";Code: Select all
::msg '"a" "b"';Of course, you can also do it like this:
Code: Select all
::$q='"'; msg $q."a".$q." ".$q."b".$q;Code: Select all
::msg quote("a") . " " . quote("b");FAQ | XY News RSS | XY X
-
PeterH
- Posts: 2827
- Joined: 21 Nov 2005 20:39
- Location: DE W11Pro 24H2, 1920*1200*100% 3840*2160*150%
Re: Teracopy does not pickup drag and drop inside Xyplorer.
Isn't here something wrong in
run """%programfiles%\TeraCopy\teracopy.exe" $op *"<xypath>\teracopylist.tmp" "$path\"""; ?
Shouldn't it be
run """%programfiles%\TeraCopy\teracopy.exe"" $op *""<xypath>\teracopylist.tmp"" ""$path\"""; ?
As I think quotes inside a quoted string should be doubled. Or do I understand something wrong?
run """%programfiles%\TeraCopy\teracopy.exe" $op *"<xypath>\teracopylist.tmp" "$path\"""; ?
Shouldn't it be
run """%programfiles%\TeraCopy\teracopy.exe"" $op *""<xypath>\teracopylist.tmp"" ""$path\"""; ?
As I think quotes inside a quoted string should be doubled. Or do I understand something wrong?
-
admin
- Site Admin
- Posts: 66295
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Teracopy does not pickup drag and drop inside Xyplorer.
Your version looks okay to me. Should work.PeterH wrote:Isn't here something wrong in
run """%programfiles%\TeraCopy\teracopy.exe" $op *"<xypath>\teracopylist.tmp" "$path\"""; ?
Shouldn't it be
run """%programfiles%\TeraCopy\teracopy.exe"" $op *""<xypath>\teracopylist.tmp"" ""$path\"""; ?
As I think quotes inside a quoted string should be doubled. Or do I understand something wrong?
But this version (using interpolation in a non-quoted string) works, too:
Code: Select all
run "%programfiles%\TeraCopy\teracopy.exe" $op *"<xypath>\teracopylist.tmp" "$path\";FAQ | XY News RSS | XY X
-
Muroph
- Posts: 561
- Joined: 21 Aug 2007 16:13
Re: Teracopy does not pickup drag and drop inside Xyplorer.
i know it's not recommended.
but i'm completely lost when it comes to quoting strings, so i do it by trial and error.
where can i find the rules for quoting (i.e. where i should double-quote, etc.)?
i'll change the script to use what PeterH posted.
but i'm completely lost when it comes to quoting strings, so i do it by trial and error.
where can i find the rules for quoting (i.e. where i should double-quote, etc.)?
i'll change the script to use what PeterH posted.
My shared scripts:
TeraCopy Integration, Tag Manager, Comments Menu, Text Replacer, Image and Media Tools, Checksum Calculator, Video Calculator
only 5 URLs are allowed on the sig...
TeraCopy Integration, Tag Manager, Comments Menu, Text Replacer, Image and Media Tools, Checksum Calculator, Video Calculator
only 5 URLs are allowed on the sig...
-
admin
- Site Admin
- Posts: 66295
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Teracopy does not pickup drag and drop inside Xyplorer.
With a good Editor and syntax coloring it's pretty easy to check whether your quoting is alright.Muroph wrote:i know it's not recommended.
but i'm completely lost when it comes to quoting strings, so i do it by trial and error.
where can i find the rules for quoting (i.e. where i should double-quote, etc.)?
i'll change the script to use what PeterH posted.
Quoting Rules:
1/ Everything is either in double-quotes, or in single-quotes, or outside of any quotes.
2/ To have double-quotes inside double-quotes they must be doubled.
3/ To have single-quotes inside single-quotes they must be doubled.
4/ Variables are resolved in double-quotes and outside of any quotes, but not in single-quotes.
FAQ | XY News RSS | XY X
-
PeterH
- Posts: 2827
- Joined: 21 Nov 2005 20:39
- Location: DE W11Pro 24H2, 1920*1200*100% 3840*2160*150%
Re: Teracopy does not pickup drag and drop inside Xyplorer.
Hey - Don was faster! (And used better words than I did...) Thoug here some samples:
The word let's can be: "let's" or 'let''s'
run "file" can be "run ""file""" or 'run "file"'
PS very fine of the forum software to show a new post, when clicking "Preview" - you can react to that before you send your own post...
The word let's can be: "let's" or 'let''s'
run "file" can be "run ""file""" or 'run "file"'
PS very fine of the forum software to show a new post, when clicking "Preview" - you can react to that before you send your own post...
-
Muroph
- Posts: 561
- Joined: 21 Aug 2007 16:13
Re: Teracopy does not pickup drag and drop inside Xyplorer.
thanks guys, that really helped.
i use editpad pro, but without syntax coloring.
i use editpad pro, but without syntax coloring.
My shared scripts:
TeraCopy Integration, Tag Manager, Comments Menu, Text Replacer, Image and Media Tools, Checksum Calculator, Video Calculator
only 5 URLs are allowed on the sig...
TeraCopy Integration, Tag Manager, Comments Menu, Text Replacer, Image and Media Tools, Checksum Calculator, Video Calculator
only 5 URLs are allowed on the sig...
-
kartal
- Posts: 208
- Joined: 14 Aug 2008 18:06
Re: Teracopy does not pickup drag and drop inside Xyplorer.
It works now however I am getting same errors in every copy operation. The operation seems to work fine but soemhow these errors are sneaked into the list.


XYplorer Beta Club