- Upgrade to DevExpress 20.2.6

- Philips: ignore read-only files during load (which cause an error when saving the list)
This commit is contained in:
Horst Beham
2021-04-02 15:33:26 +02:00
parent c5a226fc12
commit 530a4be23d
18 changed files with 403 additions and 397 deletions

View File

@@ -183,6 +183,15 @@ namespace ChanSort.Loader.Philips
{
if (!File.Exists(fileName))
return;
// skip read-only files (like hidden read-only DVBSall.xml on a Philips 24PFS5535 from 2020 (along with)
var info = new FileInfo(fileName);
if ((info.Attributes & FileAttributes.ReadOnly) != 0)
{
this.logMessages.AppendLine($"Skipping read-only file {fileName}");
return;
}
bool fail = false;
var fileData = new FileData();
try