I'm trying to send the path of a file (dynamically) containing special characters in it using keyboard.sendkeys in codedui:
string filepath="I:\^abc\abc\filename.csv";
Keyboard.SendKeys(filepath);
For some reason, ^abc in the filepath is treated as special character and sendkeys is not sending it.
Is there a workaround for this or an efficient way of doing this? I'm basically selecting a windows file i.e., through a windows prompt.