verifGetDocuments
verifGetDocuments(g_sessionId[g_relative] ) =>l_names/ nil
Description
Returns the list of files that have been added to the documents directory of the Verifier cellview.
Arguments
Value Returned
|
List of files saved in the |
|
Examples
Opens a Verifier cellview and retrieves the list of document files added to the current session.
uid = verifOpenCellView("test" "sample" "verifier")
=> 0
Gets the documents. In this case, there are none.
verifGetDocuments(sess)
=> nil
Adds file.txt from the current directory to the session.
verifAddDocument(sess "file.txt")
=> "documents/file.txt"
Adds spec.pdf from the current directory to the session and returns the list of files added to the documents directory.
verifAddDocument(sess "spec.pdf")
=> "documents/spec.pdf"
Related Topics
Return to top