Bloom.Edit.DecodableReaderTool.GetReaderToolsSettingsFilePath C# (CSharp) Method

GetReaderToolsSettingsFilePath() public static method

The file (currently at a fixed location in every settings folder) where we store any settings related to Decodable and Leveled Readers.
public static GetReaderToolsSettingsFilePath ( CollectionSettings collectionSettings ) : string
collectionSettings Bloom.Collection.CollectionSettings
return string
        public static string GetReaderToolsSettingsFilePath(CollectionSettings collectionSettings)
        {
            return Path.Combine(Path.GetDirectoryName(collectionSettings.SettingsFilePath),
                DecodableReaderTool.ReaderToolsSettingsPrefix + collectionSettings.Language1Iso639Code + ".json");
        }