Please forgive me if this is covered elsewhere, i was unable to locate a topic for this.
Using one of the content plugins, viz. filediz, is it possible to arrange a view for *.urls to include only the baseurl or the internetshortcut rather than the whole stream of information contained in the file something.url?
For instance:
Name Description
========== ====================
something.url http://www.psy.pdx.edu/...
I tried filediz.longDescription, but wasnt able to parse out the items i wanted to view.
I have url as a text...
Any help would be appreciated.
Content plugin: URL
Moderators: Hacker, petermad, Stefan2, white
You can do it with Script Content Plugin
add the following code to ext.vbs:
add the following code to ext.vbs:
Code: Select all
case "url"
Set f = fso.GetFile(filename)
Set ts = fso.OpenTextFile(filename, ForReading)
s = ts.read(1000)
ts.Close
re.Pattern = "URL=(.*)"
if re.Test(s) then
Set tt = re.Execute(s)
content= re.replace (tt(0),"$1")
End if
2sashole
I'm author of FileDiz plugin. With current version (latest from totalcmd.net) you can do the following: add to FileDiz.ini:
This will strip unneeded strings from .url files.
I can also add this as a feature to the next plugin version, if you want.
I'm author of FileDiz plugin. With current version (latest from totalcmd.net) you can do the following: add to FileDiz.ini:
Code: Select all
[Extensions]
Text=txt diz url
[Replaces]
S1=[InternetShortcut]=
S2=URL=
I can also add this as a feature to the next plugin version, if you want.