SMAPI skips folders?

I am attempting to read folders and files in the Data folder. I've traced the CanEdit function in my code and it seems to only cycle through a few of the folders. Is there some way for me to have access to all files in Data? I have accessed some of these files in past versions of SMAPI so I'm wondering what I may need to fix?
Code:
public bool CanEdit<T>(IAssetInfo asset)
    {
        if (GetReplacer(asset.AssetName) != null)
        {
            return true;
        }
        return false;
    }
 
Top