ZooFlow: frmTest import/export works now with excel files!

This commit is contained in:
Jonathan Jenne
2021-04-12 10:58:46 +02:00
parent 45cc51e19f
commit 7680c6c95d
4 changed files with 63 additions and 20 deletions

View File

@@ -569,8 +569,10 @@ Public Class EDMIService
Dim EDMIPath = New EDMI.File.Path(LogConfig, oObjectStore.Path)
Try
_Logger.Info("ImportFile: Saving file to path [{0}]", Data.pIDBFilePath)
Using oStream = New FileStream(Data.pIDBFilePath, FileMode.Create, FileAccess.Write)
_Logger.Info("ImportFile: Saving file to path [{0}]", Data.pIDBFilePath)
_Logger.Info("ImportFile: Content Length: {0}", Data.Contents.Length)
oStream.Write(Data.Contents, 0, Data.Contents.Length)
oStream.Flush(True)
oStream.Close()