标签: c# blob
我的本地系统中有一个文本文件。我想将此文件转换为字节数组,然后转换为Blob。再次需要将该blob转换为字节数组,并将其存储在本地系统的其他路径中。
byte[] bytes = System.IO.File.ReadAllBytes("C:\\Users\\test\\Desktop\\mydocument.docx"); System.IO.File.WriteAllBytes("C:\\Users\\test\\Downloads\\testdoc.docx", bytes);