I am trying to run a program and as the program is starting im getting this error
I do not know anything about this VEE software so any help will be appreciated
Thanks
William
I do not know anything about this VEE software so any help will be appreciated
Thanks
William
"C:\my files\data"
the "\" character is called a scape character and it is used in strings in combinatione with other characters to specify a special character such as a new line "\n" or a tab "\t". So when you actually want to have a "\" in your string you have to type it as such: "\\", so the correct way of wrting the directory path above is:
"C:\\my files\\data"