Delete all save files in persistentdatapth

Is it possible to retreive all files that starts with “save_” from the Application.PersistentDataPath and delete them ?

Yes you can do something like this, Try if it works

string filePaths = Directory.GetFiles(Application.PersistentDataPath);
foreach (string filePath in filePaths)
File.Delete(filePath);