ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / Big Data / Managing Mongo data files
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Copies a file from the local computer to a MongoDB file system (gridFS).
Example
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.
Component: wd300big.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 10/23/2024

Send a report | Local help