|
|
|
|
|
<mongoGridFS variable>.SendFile (Function) In french: <Variable mongoGridFS>.EnvoieFichier Copies a file from the local computer to a MongoDB file system (gridFS). gclGridFS is mongoGridFS
sFile is string = fSelect("", "", "Select the file that will be sent to GridFS", ...
"All files (*.*)" + TAB + "*.*", "", fselOpen)
IF sFile <> "" THEN
gclGridFS.SendFile(sFile, fExtractPath(sFile, fFile + fExtension))
ToastDisplay("Sending successfully performed.")
END
Syntax
(<Result>, <File information>) = <File system>.SendFile(<Name of file to copy> , <Name of copied file>)
<Result>: Boolean - True if the operation was performed,
- False if a problem occurs. ErrorInfo is used to identify the error.
<File information>: mongoGridFSFileInfo variable mongoGridFSFileInfo variable corresponding to the copied file. <File system>: mongoGridFS variable Name of the mongoGridFS variable corresponding to the MongoDB file system to use. <Name of file to copy>: Character string Path and name of file found on the local computer that will be copied into the MongoDB database. <Name of copied file>: Character string Name of file copied into the MongoDB database.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|