Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 946 Bytes

DeleteUrlCacheEntry.md

File metadata and controls

42 lines (28 loc) · 946 Bytes

Home

Function name : DeleteUrlCacheEntry

Group: Internet Functions (WinInet) - Library: wininet


Removes the file associated with the source name from the cache, if the file exists.


Code examples:

How to delete IE cookies, clear IE history and delete files in Temporary Internet Files directory

Declaration:

BOOL DeleteUrlCacheEntry(
  LPCTSTR lpszUrlName
);
  

FoxPro declaration:

DECLARE INTEGER DeleteUrlCacheEntry IN wininet;
	STRING lpszUrlName  

Parameters:

lpszUrlName [in] Pointer to a string that contains the name of the source that corresponds to the cache entry.


Return value:

Returns TRUE if successful, or FALSE otherwise.