With the SpecialFolder
module we have two ways to access the resources folder.
SpecialFolder.Resource("ResourceName")
or
SpecailFolder.Resources.Child("ResourceName")
The second makes my code more consistent since I’d be accessing children of that as well. The first has the benefit of being shorter.
I was wondering if there might be a technical reason to use one or the other? Is one faster than the other?
I was also wondering if that might mean SpecialFolder.Resources
was deprecated?
I would love an official answer from staff, but I’m hoping for any information I can gather