result = DeleteDiskObject(name)
BOOL DeleteDiskObject(STRPTR);
This routine will try to delete a Workbench disk object from disk. The name parameter will have ".info" postpended to it, and the icon file of that name will be deleted. If the call fails, it will return FALSE. The reason for the failure may be obtained via
dos.library/IoErr().
This call also updates the Workbench screen if needed.
Using this routine protects you from any future changes to the way icons are stored within the system.
error = 0;
/* Check if you have the right library version */
if(IconBase->lib_Version > 36)
{
if (!DeleteDiskObject(name))
}
else
{
/* Delete name plus ".info" */
}
if (error != 0)
{
}