Page 1 of 1
copy file path include "<>"
Posted: 11 Jun 2024 09:04
by Pelin
when I copy a file path as hyperlink to other appilcations, such as outlook or Onenote. Only the words before "blank" can be recognized.
can we add a option, when i copy the file path, it can automatically add "<>" (path name like <\\192.168.0.1\xyz 123\xxx>),so that it can be automatically recognized?
Re: copy file path include "<>"
Posted: 11 Jun 2024 12:16
by matewo
Hi Pelin,
I can reproduce your issue, using \\192.168.0.1\xyz 123\xxx, which will not automatically recognized as a "link". If I add a trailing backslash "\", it will be recognized.
Best regards, Markus
Re: copy file path include "<>"
Posted: 11 Jun 2024 12:38
by admin
Or use a script:
copytext quote(<curitem>); //in quotes
copytext '<' . <curitem> . '>'; //in hooks
Re: copy file path include "<>"
Posted: 11 Jun 2024 18:24
by yusef88
Also, as well copytext lax(<<curitem>>)
Re: copy file path include "<>"
Posted: 11 Jun 2024 18:27
by admin
XY scripting blows my mind again.

Re: copy file path include "<>"
Posted: 12 Jun 2024 02:07
by Pelin
matewo wrote: ↑11 Jun 2024 12:16
Hi Pelin,
I can reproduce your issue, using
\\192.168.0.1\xyz 123\xxx, which will not automatically recognized as a "link". If I add a trailing backslash "\", it will be recognized.
Best regards, Markus
Great