Troubleshooting SAMBA File Transfer to Raspberry Pi

Hello everyone, I’m trying to move files from my Windows 10 machine to a folder on my Raspberry Pi running Hass.io. I created a folder called ‘icons’ under ‘config/www’ using the file share tool. However, while I can transfer files to ‘config/www’, I’m unable to do so to the ‘icons’ subfolder. Has anyone encountered a similar issue and knows how to configure SAMBA to allow Windows to see the subfolder? Here’s my current SAMBA configuration:

samba
workgroup = WORKGROUP
username = [your_username]
password = [your_password]
interface = ‘’
allow_hosts = * 10.0.0.0/8 * 172.16.0.0/12 * [your_subnet].0/16 * ‘fe80::/10’
veto_files = .DS_Store Thumbs.db icon? .Trashes
compatibility_mode = false

Any advice would be greatly appreciated! Thanks in advance.