这段代码本来是想着解决:
D:\WorkSpace\practiceQuestion4\Finger160_160n\Finger160_160\Finger0\Finger1.bmp转换成
D:\WorkSpace\practiceQuestion4\Finger160_160n\Finger160_160\Finger0\Finger1.bmp
这种路径缺少转义字符的问题,结果没有转义字符也能跑会自己转义,毕竟是自己写过的代码留下来下次类似改动相似问题把!
直接放到main()函数调用跑就行。
//增加文本中的"\"
void addSlash() {//给文件路径补充"\"
FILE* fpin = NULL;
FILE* fpout = NULL;
char filename[] = "D:\\WorkSpace\\file\\question4\\Finger160_160\\dir.txt";//源文件
char changeFilename[] = "D:\\WorkSpace\\file\\question4\\Finger160_160\\dir11.txt";//复制后文件
char strPath[200] = { 0 };
char newPath[300] = { 0 };
int i = 0;
int j = 0;
int k = 0;
fopen_s(&fpin, filename, "r");
fopen_s(&fpout, changeFilename, "w");
if (fpin == NULL || fpout == NULL)//感觉判断空指针这里||有问题不改了,无伤大雅。就算不存在文件应该会自动创建
printf("Can't open the file");
while (1)
{
if (feof(fpin))//判断是否读完文件
{
break;
}
memset(strPath, 0, 200);
memset(newPath, 0, 300);
fgets(strPath, 200, fpin);//去读一行
//printf("%s", strPath);//打印文件内容:路径
i = 0;//原数组下标
j = 0;//目的数组下标
int len = sizeof(strPath);
for (i = 0; i < len; i++)
{
if (strPath[i] != '\\')//如果不是斜杠则拷贝
{
newPath[j++] = strPath[i];
}
else {//是斜杠
newPath[j++] = strPath[i];
newPath[j++] = '\\';
}
}
k = 0;
while (1)//向文件写如路径
{
if (newPath[k] == '\0') {
break;
}
fprintf(fpout, "%c", newPath[k]);
//printf("%c", newPath[k]);
k++;
}
}
fclose(fpout);
fclose(fpin);
}