Copy file to a different directory

前端 未结 7 1894
暖寄归人
暖寄归人 2021-02-05 01:23

I am working on a project where I want to copy some files in one directory to a second already existing directory.

I can\'t find a way to simply copy from one folder to

7条回答
  •  太阳男子
    2021-02-05 01:40

    This worked for me:

        string picturesFile = @"D:\pictures";
        string destFile = @"C:\Temp\tempFolder\";
    
        string[] files = Directory.GetFiles(picturesFile);
        foreach (var item in files)
        {
           File.Copy(item, destFile + Path.GetFileName(item));
        }
    

提交回复
热议问题