40
Views
2
Comments
Solved
[Multiple File Upload] Files with periods in name
Question
multiple-file-upload
Web icon
Forge asset by Multi Uploaders

Nice component just .

Needed to adjust ProcessFiles>Preparation to allow for files with periods in their names

Instead of:

InputExtension = String_Split(FileFetch.File.FileName,".")[1].Text.Value

Used:

LastPeriod = Index(FileFetch.File.FileName,".",startIndex:,searchFromEnd: True,ignoreCase:)

InputExtension = Substr(FileFetch.File.FileName,LastPeriod+1,10)



2023-12-07 07-51-40
Remco Dekkinga
 
MVP
Solution

Keith,

The issue has been solved in the latest version (2.0.0)

Kind regards,

Remco Dekkinga

2023-12-07 07-51-40
Remco Dekkinga
 
MVP

Hi Keith,

Thank you for this feedback. I’ll update the component according your finding and solution.

Kind regards,

Remco Dekkinga


2023-12-07 07-51-40
Remco Dekkinga
 
MVP
Solution

Keith,

The issue has been solved in the latest version (2.0.0)

Kind regards,

Remco Dekkinga

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.