WIPE_File securely wipes and deletes a file using 7-pass DOD standards.
Public Declare Function WIPE_File Lib "diCrPKI.dll"
(ByVal strFileName As String, ByVal nOptions As Long) As Long
nRet = WIPE_File(strFileName, nOptions)
String specifying the file to be deleted.Long option flags: not used in this release. Specify zero.
long _stdcall WIPE_File(const char *szFileName, long flags);
Long: If successful, the return value is zero;
otherwise it returns a non-zero error code.
Wipes a file using the 7-pass DOD Standard according to [NISPOM] before deleting.
nRet = WIPE_File("C:\Test\ToDelete.txt", 0)