Bloom.SourceCollectionsList.GetSourceCollectionsFolders C# (CSharp) Method

GetSourceCollectionsFolders() public method

public GetSourceCollectionsFolders ( ) : IEnumerable
return IEnumerable
        public virtual IEnumerable<string> GetSourceCollectionsFolders()
        {
            return from dir in GetCollectionFolders()
                where dir != _editableCollectionDirectory
                      && !Path.GetFileName(dir).StartsWith(".")
                select dir;
        }