CSL.TorrentBuilder.SkipReleaseFormatCheck C# (CSharp) Method

SkipReleaseFormatCheck() private method

private SkipReleaseFormatCheck ( ) : bool
return bool
        private bool SkipReleaseFormatCheck()
        {
            Match match = Regex.Match(SettingsHandler.GetCustomDirectory(), "%l|%s|%c|%e|%r|%v|%n|%x|%u|%v|%z");
            if (match.Success) return false; //Need release format to properly create save structure

            bool skip = true;
            foreach (string r in ReleaseTypes)
            {
                skip = SettingsHandler.GetDownloadFormatExists(r);
                if (!skip) //If a don't-download exists, need release format to filter out torrents
                    break;
            }
            return skip;
        }