我正在尝试在WindowsFormsApp12中复制文件
从名为smth.cs
到resources
的文件夹中命名为C:\Users\1\Desktop\123
。
我尝试使用此代码,但是它不起作用:
File.WriteAllBytes(
@"C:\Users\1\Desktop\123\smth.cs", WindowsFormsApp12.Properties.Resources.smth
);
感谢您的帮助。
答案 0 :(得分:0)
尝试
string source = @"c:\source\MyTest.txt";
string destination = @"c:\destination\MyTest.txt";
File.Copy(source , destination);