- Jul
- 20
- 1
If you try to specifically 'exclude' a file that has a right parenthesis in its filename, it appears that the exclude code treats the parenthesis as the closing paren for the exclusion list. For example:
> except (test(1.2).txt) dir *
TCC: Unknown command ".txt)"
Even putting the filename in quotes fails, with a slightly different output:
> except("test(1.2).txt") dir *
TCC: Unknown command ".txt) dir *"
(edit: this is on "TCC 15.01.51 x64 Windows 7 [Version 6.1.7601]")
> except (test(1.2).txt) dir *
TCC: Unknown command ".txt)"
Even putting the filename in quotes fails, with a slightly different output:
> except("test(1.2).txt") dir *
TCC: Unknown command ".txt) dir *"
(edit: this is on "TCC 15.01.51 x64 Windows 7 [Version 6.1.7601]")