我想把 aa文件夹下某几个文件复制到BB文件夹下面
File.Copy(strCsvfile, strCsvfileCopypath)
strCsvfile: aa文件夹下某个文件名。
strCsvfileCopypath bb文件夹的路径。

解决方案 »

  1.   

    可以呀。这样是可以实现的。
    trCsvfileCopypath 可以带文件名,就会提示覆盖文件与否
      

  2.   

    using System;
    using System.IO;class Test 
    {
        public static void Main() 
        {
            string path = @"c:\temp\MyTest.txt";
            string path2 = path + "temp";        try 
            {
                using (FileStream fs = File.Create(path)) {}
                // Ensure that the target does not exist.
                File.Delete(path2);            // Copy the file.
                File.Copy(path, path2);
                Console.WriteLine("{0} copied to {1}", path, path2);            // Try to copy the same file again, which should fail.
                File.Copy(path, path2);
                Console.WriteLine("The second Copy operation succeeded, which was not expected.");
            }         catch (Exception e) 
            {
                Console.WriteLine("Double copying is not allowed, as expected.");
                Console.WriteLine(e.ToString());
            }
        }
    }
      

  3.   

    这段话,为什么运行到File.Create(path)就出错呢
    难道我visual studio安装的时候不是管理者的缘故吗。但是我现在已经把它改成管理者了啊。
    怎么还会是这样的。