123456789101112131415161718192021 |
- namespace Wayne.Lib.IO
- {
-
-
-
- public class SecureDeleteSupportCE : ISecureDeleteSupport
- {
-
-
-
-
-
-
-
- public void SecureDelete(string fileName, out bool sDeleteOK, int retries, int delayBetweenRetries)
- {
- FileSupport.Delete(fileName, retries, delayBetweenRetries);
- sDeleteOK = true;
- }
- }
- }
|