1
#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 编译器编译它......是操作系统错误还是我的代码或编译器有问题吗?

4

1 回答 1

3

我突然想到两件事:

  • 对于大多数完整路径来说,30 个字符是不够的。new如果可以避免,也不应该使用它;固定长度的数组也可以放在堆栈上;这是一份工作,std::string如果有的话。

  • 您在尝试删除文件之前没有关闭该文件。平台对此要求有所不同,但我认为 Windows 不喜欢这样。在调用之前销毁或关闭流remove

于 2013-08-30T14:11:38.663 回答