我真的很挣扎,任何帮助将不胜感激。
我需要一些代码来遍历文件夹中的每个文件并将其保存到数据库中,以便以后可以将其拉出并显示。我还没有到显示部分,哈哈,仍在尝试获取数据库中的文件。
到目前为止,我给了我一个错误
Value of type '1-dimensional array of Byte' cannot be converted to 'String'.
数据库中的所有字段都是nvarchar(MAX)
Dim dir As New System.IO.DirectoryInfo("C:\Users\Will\Desktop\SUBARU")
For Each f As System.IO.FileInfo In dir.GetFiles("*.*")
Using db As New FileStoreAppDBEntities
Dim NewFile As New StoredFile
NewFile.FileName = f.Name
NewFile.FileSize = f.Length
'got trouble here
Dim ImageData As Byte() = System.IO.File.ReadAllBytes(f.FullName)
NewFile.FileContent = ImageData
'
NewFile.FileType = f.Extension
db.StoredFiles.AddObject(NewFile)
db.SaveChanges()
End Using
Next
也许我做错了?
非常感谢您的帮助。
- 编辑
这似乎做到了!
For Each f As System.IO.FileInfo In dir.GetFiles("*.*")
Using db As New FileStoreAppDBEntities
Dim NewFile As New StoredFile
NewFile.FileName = f.Name
NewFile.FileSize = f.Length
Dim filename As String = f.FullName
NewFile.FileContent = System.IO.File.ReadAllBytes(filename)
NewFile.FileType = f.Extension.ToLower
db.StoredFiles.AddObject(NewFile)
db.SaveChanges()
End Using
Next
虽然不确定性能,我认为这可能会将文件放入内存然后发送而不是流式传输?
并检索文件:
Using db As New FileStoreAppDBEntities
Dim IDofFile As Integer = 31
Dim getFile = (From files In db.StoredFiles Where files.FileID = IDofFile Select files).SingleOrDefault
'getFile.FileName eg. mydocument.txt
System.IO.File.WriteAllBytes("C:\LocationToSaveTo\" & getFile.FileName, getFile.FileContent)
End Using
获得非常大的文件的错误System.OutOfMemoryException
虽然非常适合较小的文件......
也许将文件分块是可能的?