vspf: ignore "hidden" files

This commit is contained in:
bnnm 2023-06-24 14:55:43 +02:00
parent 46efa7c044
commit 4da2c9ef38

View File

@ -55,6 +55,10 @@ class ProjectFixer:
if '\\' in basefile:
pos = basefile.rindex('\\')
path = basefile[0 : pos + 1]
basename = os.path.basename(basefile)
if basename.startswith('.'): #hidden .c
continue
items.append( (basefile, path) )
return items