如何将txt文件移动到其他文件夹
本文关键字:其他 文件夹 移动 文件 txt | 更新日期: 2023-09-27 18:06:19
我尝试写一个控制台应用程序c#移动我的etext文件到另一个文件夹。函数只是将。txt文件从文件夹A复制到文件夹AA
string source = "C:''A''ResultClassA.txt";
File.Move(Source, "C:''AA");
但是它总是给出这个错误信息:
访问路径被拒绝。
故障排除技巧:确保您有足够的权限来访问此资源。如果您试图访问文件,请确保它不是只读的。获取有关此异常的一般帮助。
我真的需要将文件夹A和文件夹B设置为"非只读"属性吗?"移动"代码是借口吗?并设置为只读回成功后移动?
谢谢。
您需要指定完整路径并确保路径C:'AA
存在
string source = "C:''A''ResultClassA.txt";
File.Move(Source, "C:''AA''ResultClassA.txt");
看这里好的例子
using System;
using System.IO;
class Test
{
public static void Main()
{
string path = @"c:'temp'MyTest.txt";
string path2 = @"c:'temp2'MyTest.txt";
try
{
if (!File.Exists(path))
{
// This statement ensures that the file is created,
// but the handle is not kept.
using (FileStream fs = File.Create(path)) {}
}
// Ensure that the target does not exist.
if (File.Exists(path2))
File.Delete(path2);
// Move the file.
File.Move(path, path2);
Console.WriteLine("{0} was moved to {1}.", path, path2);
// See if the original exists now.
if (File.Exists(path))
{
Console.WriteLine("The original file still exists, which is unexpected.");
}
else
{
Console.WriteLine("The original file no longer exists, which is expected.");
}
}
catch (Exception e)
{
Console.WriteLine("The process failed: {0}", e.ToString());
}
}
}
英雄,你正在从一个文件名移动到一个文件夹名,尝试在C:'AA
文件夹内指定一个扩展名的文件名。