0
Wie lösche ich Dateien mit bestimmten Erweiterungen? Zum Beispiel: .pdfDatei auf Karussell nicht löschen
Ich versuche, diesen Code:
StorageFolder library = await installedLocation.CreateFolderAsync("library", CreationCollisionOption.OpenIfExists);
BookAudio hapusmajalah = this.carousel.SelectedItem as BookAudio;
try
{
if(hapusmajalah.Name == hapusmajalah.Name + ".pdf")
{
StorageFile filepdf = await library.GetFileAsync(hapusmajalah.Name + ".pdf");
await filepdf.DeleteAsync();
}
this.carousel.SelectedItem = carousel.Items[0];
await this.getContent();
}
catch
{
this.carousel.SelectedItem = carousel.Items[0];
this.getContent();
}
}));
}
BookAudio Klasse:
class BookAudio
{
public string Name { get; set; }
public ImageSource Image { get; set; }
}
aber nicht erfolgreich entfernt. Wenn Sie das if nicht verwenden, wurde die Datei erfolgreich entfernt. Wie man dieses Problem löst?
was der Mittelwert von "yourFilePath"? In meinem Projekt die Datei auf "Bibliothek" StorageFolder – Rose