Why do I have to use double backslashes for file-paths in code?

徘徊边缘 提交于 2019-11-29 06:48:41
sashoalm

This is the preliminary answer. It's community-wiki so feel free to improve it.

Somewhere in your code you have a file-path that contains unescaped backslashes. For example:

const char *fileName = "c:\unescaped\backslashes.txt";

You need to change it into:

const char *fileName = "c:\\unescaped\\backslashes.txt";

Why?

The compiler in C, C++, Java, Python and other languages treats the backslash as a special character, called the escape character.

For example \n will be turned into a newline. So this code - printf("C:\new file.txt"); will print

C:
ew file.txt

So if you have a file name that contains backslashes, what the program will receive will not be what you see in the source code. The backslash itself can be escaped with another backslash. So this code - printf("C:\\new file.txt"); will print this:

C:\new file.txt
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!