verifRemoveDocument
verifRemoveDocument(
g_sessionId
t_fileName
)
=> t / nil
Description
Removes the given file from documents directory of the Verifier cellview.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
Value Returned
Examples
Opens a Verifier cellview and removes a document file from the current session.
uid = verifOpenCellView("test" "sample" "verifier")
=> 0
Adds file.txt from the current directory to the session.
verifAddDocument(sess "file.txt")
=> "documents/file.txt"
verifGetDocuments(sess)
=> ("file.txt")
verifRemoveDocument(sess "file.txt")
=> t
Returns nil if the file does not exist.
verifGetDocuments(sess)
=> nil
verifRemoveDocument(sess "file.txt")
=> nil
Related Topics
Return to top