home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 April
/
CHIP_CD_2005-04.iso
/
software
/
netv
/
NVinst.exe
/
$INSTDIR
/
Scripts
/
Scripter
/
ClearCachedResources.nvs
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
2005-02-22
|
301 b
|
19 lines
{
This script clears all cached resources lists
}
var hst:TNVHost;
begin
hst:=TNVHost.create;
hst.nextid:=0;
repeat
hst.GetHost(hst.nextid,0);
if(hst.id<>0)then
begin
hst.SetMetaVar('!ftpcache','');
hst.SetMetaVar('!nbcache','');
end;
until hst.nextid=0;
hst.Free;
end.