Ghostfilter - "Named Drives" path support

Features wanted...
Post Reply
konfuzius
Posts: 16
Joined: 26 Aug 2014 18:20

Ghostfilter - "Named Drives" path support

Post by konfuzius »

d: "E:\logs" >>> d: "Seagate Wireless Plus (1000):\logs"
XYplorer {latest beta}
Windows 10 x64

Image

highend
Posts: 14566
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Ghostfilter - "Named Drives" path support

Post by highend »

If this doesn't get implemented, it could at least be scripted...

E.g.:

Code: Select all

    $path = ResolveNamedDrivePath("Seagate Wireless Plus (1000):\Temp");
    ghost("d: ""$path""", 1);

function ResolveNamedDrivePath($location) {
    return get("driveletter", gettoken($location, 1, ":")) . ":\" . gettoken($location, 2, ":\");
}
One of my scripts helped you out? Please donate via Paypal

admin
Site Admin
Posts: 64841
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Ghostfilter - "Named Drives" path support

Post by admin »

It got implemented this morning. :)

yusef88
Posts: 1148
Joined: 28 Jan 2013 03:50
Location: Windows 8.1 32-bit

Re: Ghostfilter - "Named Drives" path support

Post by yusef88 »

can i hide all .lnk extension on desktop?
=====
update:yes, i can :o but why it doesn't accept variables?

Code: Select all

%user%\Desktop\*.lnk

Post Reply