#include <iostream>
#include <string.h>
#include <fstream>
#include <conio.h>
int main()
{
int k=0;
char *source = new char[30];
char *destination = new char[30];
while(k==0)
{
cout<<"Enter the source File location: ";
cin>>source;
cout<<endl<<"Enter the destination File location: ";
cin>>destination;
ifstream is(source,ios::in | ios::binary);
ofstream os(destination,ios::out | ios::binary);
if(is==NULL || os==NULL)
{
perror("Either the input or the ouput location is invalid");
cout<<endl<<"Try again with new location.\n";
cout<<endl<<"To exit press 7 and to continue press 0";
cin>>k;
}
else
{
os<<is.rdbuf();
k++;
cout<<endl<<"File moved successfully";
cout<<endl<<"Do you want to delete the original file: [y/n]";
if(getch()=='y')
{
if(remove(source)== -1)
perror("Error in deleting File");
else
cout<<" Source File deleted.";
}
}
}
}
文件已成功删除,但在删除文件时显示:
“删除文件时出错”权限被拒绝。
当它询问源地址和目标地址(如 C:/MIT/adi.txt)时,我使用了两种斜杠(向前和向后),我正在使用 mingw 编译器编译它......是操作系统错误还是我的代码或编译器有问题吗?