File gets uploaded to the AzureBlob storage however the file is not uploaded in the correct folder.
This app has been working for the last 2 years successfully. Now the file is just remaining in the root folder.
Below is the code:
Tmplocation is a variable which reads the value from a sql Table
Set (tmpbloblocation,LookUp('frm._0FileLocations',Sub_Category = ThisItem.SubCategory And Category = ThisItem.Category,BlobLocation));
when it runs the tmplocation has a value of load-file\HR\HR_EXPRESS\current
Set(
filenamefinal,
Mid(
Last(AttachmentControl_1.Attachments).Name,
1,
Find(
".",
Last(AttachmentControl_1.Attachments).Name
) - 1
) & "_" & User().FullName & "_" & Text(
Now(),
"yyyymmddhhmm"
) & "." & Mid(
Last(AttachmentControl_1.Attachments).Name,
Find(
".",
Last(AttachmentControl_1.Attachments).Name
) + 1
)
);
AzureBlobStorage.CreateFile(
tmpbloblocation,
Mid(
Last(AttachmentControl_1.Attachments).Name,
1,
Find(
".",
Last(AttachmentControl_1.Attachments).Name
) - 1
) & "_" & User().FullName & "_" & Text(
Now(),
"yyyymmddhhmm"
) & "." & Mid(
Last(AttachmentControl_1.Attachments).Name,
Find(
".",
Last(AttachmentControl_1.Attachments).Name
) + 1
),
Last(AttachmentControl_1.Attachments).Value
);
WarrenBelz
146,524
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,906
Most Valuable Professional