Skip to content

Instantly share code, notes, and snippets.

@Char0394
Created June 15, 2017 02:24
Show Gist options
  • Select an option

  • Save Char0394/44d044f4aa560772300c52da93625aa6 to your computer and use it in GitHub Desktop.

Select an option

Save Char0394/44d044f4aa560772300c52da93625aa6 to your computer and use it in GitHub Desktop.
iOS
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