0

当我尝试使用文件路径打开文件时出现错误

out_stream5.open("C:pathshowitems.txt", ios::out);

警告 C4129:“o”:无法识别的字符转义序列错误 C2100:非法间接

4

1 回答 1

2

我想你在 Windows 上工作。问题可能是您需要转义反斜杠:

out_stream5.open("C:\\path\\showitems.txt", ios::out);
于 2010-04-20T22:14:14.540 回答