资源中某个文件的路径是什么



例如,如何将文件复制到 c:/从我的资源文件?我在以下位置发现了类似的问题:应用程序资源中文件的文件路径(字符串)是什么?但它说"错误 2 参数 2:无法从'字节 []' 转换为'字符串'"

这是我当前的代码,它失败了:

System.IO.File.Copy("C:\", ctest.Properties.Resources.test);

测试是文件。

对于二进制文件:

File.WriteAllBytes("C:\filename.bin", ctest.Properties.Resources.test);

对于文本文件:

File.WriteAllText("C:\filename.txt", ctest.Properties.Resources.test);

对于图像资源:

Bitmap bitmap = Resources.MyImageResource;
bitmap.Save("filename.jpg", ImageFormat.Jpeg);

相关内容

  • 没有找到相关文章

最新更新