vc++中文件路径写法 |
c++中//是一种转义字符,他表示一个/,就像/n表示回车一样。 所以VC中路径名: D:/matcom45/doc/users/_themes/m.dat 应为: CString filename=_T("D://matcom45//doc//users//_themes//m.dat"); 或 CString filename=_T("D:/matcom45/doc/users/_themes/m.dat");
|
vc++中文件路径写法 |
c++中//是一种转义字符,他表示一个/,就像/n表示回车一样。 所以VC中路径名: D:/matcom45/doc/users/_themes/m.dat 应为: CString filename=_T("D://matcom45//doc//users//_themes//m.dat"); 或 CString filename=_T("D:/matcom45/doc/users/_themes/m.dat");
|