unity c# resources.load something is not in ressources folder code example
Example: unity load text resources from subfolder
TextAsset mytxtData = (TextAsset)Resources.Load("SubfolderName/");
string txt_encoded = Encoding.UTF8.GetString(mytxtData.bytes);