Hi, I am using document understanding to extract data from multiple scanned invoices so while using Digitize Document activity the error occurs as “Digitize Document: The extension ‘.ini’ does not have a known content type defined”.Plz help
Apparently you aren’t filtering out the files via extension, so robot is picking all the files present in folder. Usually Desktop.ini is a hidden file which was automatically created.
So in order to circumvent this situation please filter the file path via extension like .pdf.
System.IO.Directory.GetFiles(“myFilePath “,”.pdf”)
Thanks