WinterSync.ArchiveLister.IsSpringArchive C# (CSharp) Méthode

IsSpringArchive() static private méthode

static private IsSpringArchive ( string archivePath ) : bool
archivePath string
Résultat bool
        static bool IsSpringArchive(string archivePath)
        {
            var lowerArchivePath = archivePath.ToLower();
            return lowerArchivePath.EndsWith("sdz") || lowerArchivePath.EndsWith("sd7");
        }