namespace Wayne.Lib.IO
{
///
/// Secure delete support for Windows CE - no secure delete for real, but enabling the same interface as Win32 version.
///
public class SecureDeleteSupportCE : ISecureDeleteSupport
{
///
/// Performs a secure deletion on a file.
///
///
///
///
///
public void SecureDelete(string fileName, out bool sDeleteOK, int retries, int delayBetweenRetries)
{
FileSupport.Delete(fileName, retries, delayBetweenRetries);
sDeleteOK = true;
}
}
}