Can we escape semicolon (;) or comma (,) in log parser query? Because I want to query a file which is having ';' in file path. For example If I query a file which is placed under the folder named "ab;c"
C:\Program Files (x86)\Log Parser 2.2>LogParser -i:CSV "select * from 'G:\ab;c\123.csv'"
getting the below error
Error: Error opening files: Error opening file "G:\ab": The system cannot find the file specified.
The folder path is getting terminated with the occurrence of semicolon or comma. I have tried with replacing the character with Unicode, but still the same result. Is there any solution? or is it a limitation ?
Thanks in advance