怎么将文件夹里指定的图片,复制到另一个文件夹中!急!急

时间:2021-06-12 12:33:33
怎么将文件夹里指定的图片,复制到另一个文件夹中

8 个解决方案

#1


  File.Copy(要复制的文件, 目标文件的名称。不能是目录, true);

如:
  File.Copy(@"c:\a.jpg", @"d:\b.jpg", true);

#3


引用 1 楼 q107770540 的回复:
File.Copy(要复制的文件, 目标文件的名称。不能是目录, true);

如:
  File.Copy(@"c:\a.jpg", @"d:\b.jpg", true);

试过,正确无误。

#4


直接调用用copy()函数啊

#5


用copy to

#6


copy to...流的基本属性方法 LZ得多看看书。。

#7


引用 2 楼 q107770540 的回复:
http://msdn.microsoft.com/zh-cn/library/9706cfs5(v=VS.80).aspx

Imports System
Imports System.IO

Public Class Test
    Public Shared Sub Main()
        ' Specify the directories you want to manipulate.
        Dim path As String = "c:\temp\MyTest.txt"
        Dim path2 As String = path + "temp"

        Try
            Dim fs As FileStream = File.Create(path)
            fs.Close()

            ' 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 succeed.
            File.Copy(path, path2, True)
            Console.WriteLine("The second Copy operation succeeded, which was expected.")

        Catch
            Console.WriteLine("Double copying is not allowed, which was not expected.")
        End Try
    End Sub
End Class

#8


该回复于2011-01-24 09:20:29被版主删除

#1


  File.Copy(要复制的文件, 目标文件的名称。不能是目录, true);

如:
  File.Copy(@"c:\a.jpg", @"d:\b.jpg", true);

#2


#3


引用 1 楼 q107770540 的回复:
File.Copy(要复制的文件, 目标文件的名称。不能是目录, true);

如:
  File.Copy(@"c:\a.jpg", @"d:\b.jpg", true);

试过,正确无误。

#4


直接调用用copy()函数啊

#5


用copy to

#6


copy to...流的基本属性方法 LZ得多看看书。。

#7


引用 2 楼 q107770540 的回复:
http://msdn.microsoft.com/zh-cn/library/9706cfs5(v=VS.80).aspx

Imports System
Imports System.IO

Public Class Test
    Public Shared Sub Main()
        ' Specify the directories you want to manipulate.
        Dim path As String = "c:\temp\MyTest.txt"
        Dim path2 As String = path + "temp"

        Try
            Dim fs As FileStream = File.Create(path)
            fs.Close()

            ' 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 succeed.
            File.Copy(path, path2, True)
            Console.WriteLine("The second Copy operation succeeded, which was expected.")

        Catch
            Console.WriteLine("Double copying is not allowed, which was not expected.")
        End Try
    End Sub
End Class

#8


该回复于2011-01-24 09:20:29被版主删除