我们如何将一个文件夹中的文件夹复制并移动到另一个文件夹。
void BtncopyClick(object sender, EventArgs e)
{
string filename=@"E:\\Files\\Reports\\R^ECG^_0_1688^Jones^^_20160711065157_20160711065303 - Copy (4) - Copy.pdf";
string sourcepath=@"E:\\Anusha";
string targetpath=@"E:\\Anusha\\aaa";
string sourcefile= System.IO.Path.Combine(sourcepath,filename);
string destfile= System.IO.Path.Combine(targetpath,filename);
if (!System.IO.Directory.Exists(targetpath))
{
System.IO.Directory.CreateDirectory(targetpath);
}
System.IO.File.Copy(sourcefile, destfile, true);
if (System.IO.Directory.Exists(sourcepath))
{
string[] files = System.IO.Directory.GetFiles(sourcepath);
// Copy the files and overwrite destination files if they already exist.
foreach (string s in files)
{
// Use static Path methods to extract only the file name from the path.
filename = System.IO.Path.GetFileName(s);
destfile = System.IO.Path.Combine(targetpath, filename);
System.IO.File.Copy(s, destfile, true);
}
}
else
{
MessageBox.Show("File doesn't exist");
}
}
void BtnmoveClick(object sender, EventArgs e)
{
String path = "E:\\Files\\25-11-2017";
String path2 = "E:\\Anusha\\aaa\\25-11-2017";
if (!File.Exists(path))
{
{
// This statement ensures that the file is created,
// but the handle is not kept.
using (FileStream fs = File.Create(path)) {}
}
System.IO.Directory.Move("E:\\Files\\25-11-2017",@"E://Anusha//aaa");
// Move the file.
File.Move(path, path2);
MessageBox.Show("File Moved");
}
}
我有上面的代码来复制和移动文件夹,我没有得到任何编译错误。但是,当我试图点击输出表单上的按钮时,它显示为终止。
更新
代码可以解决任何错误,但它会因为无法创建文件而终止错误,因为它已经存在
答案 0 :(得分:1)
希望这有帮助
How to: Copy, Delete, and Move Files and Folders (C# Programming Guide)
您可以使用System.IO.File命名空间中的System.IO.Directory,System.IO.FileInfo,System.IO.DirectoryInfo和System.IO类。
答案 1 :(得分:0)
我不确定你要做什么,但我在这里看到很多问题。
1)在
行System.IO.Directory.Move("E:\\Files\\25-11-2017",@"E://Anusha//aaa");
您在第二个参数中使用//
作为目录分隔符。你应该把它改成
System.IO.Directory.Move("E:\\Files\\25-11-2017","E:\\Anusha\\aaa");
2)有时你不正确地使用逐字字符串。例如,在行
中string sourcepath=@"E:\\Anusha";
您正在使用逐字字符串,这意味着编译器会忽略该字符串中的转义序列。因此,您的应用程序稍后将找不到该路径。而是使用以下之一:
string sourcepath=@"E:\Anusha";
string sourcepath="E:\\Anusha";
3)你的BtnmoveClick的结构非常奇怪。这条线
System.IO.Directory.Move("E:\\Files\\25-11-2017","E:\\Anusha\\aaa");
将E:\files\25-11-2017
的内容移至E:\Anusha\aaa
,,但前提是后者尚不存在。如果它已经存在,该行将导致异常(这可能会使您的应用程序终止)。
此外,在您已经移动了上面显示的行中的目录内容之后,您再次尝试移动行中的内容
File.Move(path, path2);
但是path
和path2
是描述目录而不是文件的字符串,所以我不这样做。此外,由于您已经在上一行中移动了目录(更精确:它的内容),我问自己该行的目的究竟是什么。
我还没有查看你的BtncopyClick,所以现在让我们专注于BtnmoveClick。请尝试解决目前为止所描述的问题,如果还有其他问题,请回报。
作为一般建议:如果你真的想学习C#,那么不要复制粘贴随机选择的例子;你永远不会学到任何有用的东西。相反,请阅读MSDN上的.net框架文档或阅读一本好书 - 这将使您深入了解。