Uploading a file to a object that derives from System.FileDocument in Java

4
If I create an instance of an object that derives from System.FileDocument in Java, how can I upload a file to it through code?
asked
1 answers
4

Use the Core.storeFileDocumentContent( ) method, that's a generic function for storing content to something that inherits from System.FileDocument. See also this question.

answered