この関数を使用して、それからバイトを取得してデータベースに送信しようとしています
Public Function GetBinary(ByVal Path As String) As Byte()
Dim fStream As New FileStream(Path, FileMode.Open, FileAccess.Read, FileShare.None)
Dim fLen As Integer = fStream.Length
Dim br As New BinaryReader(fStream)
Dim data As Byte() = br.ReadBytes(fLen)
Return data
End Function
しかし、私がそれを使用すると、エラーが発生します私が選択したファイルが別のアプリケーションによって開かれているようです,,,
エラーメッセージ >
The process cannot access the file 'C:\Users\LOAI\Desktop\2011-11-23 15.47.36.jpg' because it is being used by another process.
このエラーなしでファイルを選択し、画像からバイトを取得するにはどうすればよいですか
よろしくお願いします