Created
June 15, 2017 02:24
-
-
Save Char0394/44d044f4aa560772300c52da93625aa6 to your computer and use it in GitHub Desktop.
iOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void IMediaService.ClearFiles(List<string> filePaths) | |
| { | |
| var documentsDirectory = Environment.GetFolderPath | |
| (Environment.SpecialFolder.Personal); | |
| if (Directory.Exists(documentsDirectory)) | |
| { | |
| foreach (var p in filePaths) | |
| { | |
| File.Delete(p); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment