Hi,
I am uploading a directory of files to DMX using EntriesController.SimplifiedUpload. All is working fine, I can see the files in DMX, but for some reason all files have the same MD5Hash value even when they are all different. Is there anything I need to do to make sure the MD5Hash value is correct?
Here is the code I am using:
Dim di As New DirectoryInfo(_imagesPath)
Dim fiList As FileInfo() = di.GetFiles()
For Each fi As FileInfo In fiList
...
fs = New FileStream(fi.FullName, FileMode.Open)
uploadedEntryId = EntriesController.SimplifiedUpload(_portalId, _
imagesCollectionId, fs, fi.Name, fi.Name, _
UserController.GetCurrentUserInfo, False)
...
Next