| Components | All | New | MacOS | Windows | Linux | iOS | ||||
| Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old | |
MongoDB.GridFS.Drop
Requests that an entire GridFS be dropped, including all files associated with it.
| Component | Version | macOS | Windows | Linux | Server | iOS SDK |
| MongoDB | 16.3 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
MBS( "MongoDB.GridFS.Drop"; MongoDBRef ) More
Parameters
| Parameter | Description | Example |
|---|---|---|
| MongoDBRef | The reference number for the mongo connection. | $MongoDB |
Result
Returns OK or error.
Description
Requests that an entire GridFS be dropped, including all files associated with it.Examples
Drop GridFS:
Perform Script [ “Connect” ; Specified: From list ; Parameter: ]
Set Variable [ $Mongo ; Value: Get(ScriptResult) ]
If [ Length ( $Mongo ) = 0 // failed in connect script ]
Exit Script [ Text Result: ]
End If
#
Set Variable [ $r ; Value: MBS( "MongoDB.GridFS.Open"; $Mongo; "test" ) ]
If [ MBS("IsError") ]
Set Variable [ $x ; Value: MBS( "MongoDB.Release"; $Mongo ) ]
Show Custom Dialog [ "Failed to open gridfs." ; $r ]
Exit Script [ Text Result: ]
End If
#
Set Variable [ $r ; Value: MBS( "MongoDB.GridFS.Drop"; $Mongo ) ]
If [ MBS("IsError") ]
Set Variable [ $x ; Value: MBS( "MongoDB.Release"; $Mongo ) ]
Show Custom Dialog [ "Failed to drop gridfs." ; $r ]
Exit Script [ Text Result: ]
End If
#
Show Custom Dialog [ "Dropped gridfs" ; $r ]
Set Variable [ $Mongo ; Value: Get(ScriptResult) ]
If [ Length ( $Mongo ) = 0 // failed in connect script ]
Exit Script [ Text Result: ]
End If
#
Set Variable [ $r ; Value: MBS( "MongoDB.GridFS.Open"; $Mongo; "test" ) ]
If [ MBS("IsError") ]
Set Variable [ $x ; Value: MBS( "MongoDB.Release"; $Mongo ) ]
Show Custom Dialog [ "Failed to open gridfs." ; $r ]
Exit Script [ Text Result: ]
End If
#
Set Variable [ $r ; Value: MBS( "MongoDB.GridFS.Drop"; $Mongo ) ]
If [ MBS("IsError") ]
Set Variable [ $x ; Value: MBS( "MongoDB.Release"; $Mongo ) ]
Show Custom Dialog [ "Failed to drop gridfs." ; $r ]
Exit Script [ Text Result: ]
End If
#
Show Custom Dialog [ "Dropped gridfs" ; $r ]
See also
- IsError
- MongoDB.GridFS.Close
- MongoDB.GridFS.Find
- MongoDB.GridFS.Open
- MongoDB.GridFS.Read
- MongoDB.GridFS.Remove
- MongoDB.GridFS.Write
- MongoDB.Release
Release notes
- Version 16.3
- Added GridFS functions for MongoDB functions: MongoDB.GridFS.Close, MongoDB.GridFS.Drop, MongoDB.GridFS.Find, MongoDB.GridFS.FindOne, MongoDB.GridFS.FindOneByFileName, MongoDB.GridFS.GetChunks, MongoDB.GridFS.GetFiles, MongoDB.GridFS.Open, MongoDB.GridFS.Read, MongoDB.GridFS.Remove, MongoDB.GridFS.RemoveByFileName and MongoDB.GridFS.Write.
This function checks for a license.
Created 28th May 2026, last changed 28th May 2026