Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - jnarew

Pages: [1]
1
Script / Re: File comparision with archive support
« on: February 17, 2015, 15:42:44 »
Thanks for quick answer,

Can You suggest me elementary script commands / code that:
a) Check if in panels source or target display archive content.
b)  Extract (copy) highlighted file (source/target) to temporary folder.

I try  test extending macro .

Regards,
Janusz 

2
Script / File comparision with archive support
« on: February 17, 2015, 12:03:51 »
Hello Mathias,
Thanks for MC. Now it becones a great tools as TC ;-) 

My Request:

Comparision file content with archives support.

I found solution by macro: ( thread http://forum.multicommander.com/forum/index.php/topic,654.msg1751.html#msg1751 )
but this :

@var $cmd = "D:\\Programs\\WinMerge\\WinMergeU.exe";

@var $selectedPaths = GetSelectedPaths();
@var $path1;
@var $path2;
if (arrayCount($selectedPaths) == 2)
{
  $path1 = $selectedPaths[0];
  $path2 = $selectedPaths[1];
}
else
{
  /*$path1 = GetSourceFocusPath();*/
  /*$path2 = GetTargetFocusPath();*/
  $path1 = GetTagValue("${leftfocuspath}");
  $path2 = GetTagValue("${rightfocuspath}");
}

MC.Run CMD="{$cmd}" ARG='"{$path1}" "{$path2}"'


can't utilize archived files

I tried extending by studying macros API but giveup.


Best Regards
Janusz, Poland

Pages: [1]