Copy file to a different directory

前端 未结 7 1897
暖寄归人
暖寄归人 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 02:05

    Maybe

    File.Copy("c:\\myFolder\\myFile.txt", "c:\\NewFolder\\myFile.txt");
    

    ?

    0 讨论(0)
提交回复
热议问题