| Member with 2 posts. THREAD STARTER | | | |
Solved: Skip files in batch files Hi,
Am currently mapping a samba drive to windows and am trying to get rid of the dot files that appears on the mapped window directory. So i wrote a batch file that has
for %%G in (.*.*) do attrib +h /s /d %%G
When i run this batch file, it returns with a access denied on this file, .odbc.ini. Am trying to skip that file so that the above cmd will work. Have tried various ways but could not skip that file. Any help will be appreciated. thanks |