Can I check if a document is uploaded to my System.FileDocument instance in microflow?

2
Can I check if a document is uploaded to my System.FileDocument instance in microflow?
asked
1 answers
3

You could write a java action that retrieves the inputstream from the core and then check what

inputstream.available()

returns.

You could also check to see if the name has been set:

fileDocument.getValue("Name")

(should be empty if no file has been uploaded)

answered