기타 [vb.net] FileStream
페이지 정보
본문
정리중...
Dim _assembly As Assembly = Assembly.GetExecutingAssembly()
Dim _rawstream As Stream = _assembly.GetManifestResourceStream("MyFile.dll")
My.Computer.FileSystem.WriteAllBytes(output file, My.Resources.resourcename, False)
Dim fs As new FileStream("path to new file.dll", FileMode.Create)
_rawstream.CopyTo(fs)
Using fileStream As FileStream = File.OpenWrite("MyFile.bin")
_rawstream.CopyTo(fileStream)
End Using
- 이전글[vb.net] SaveFileDialog 예제 21.06.04
- 다음글[vb.net] DataTable to CSV 21.06.04
댓글목록
등록된 댓글이 없습니다.