load()
On this page
This version of the documentation is archived and no longer
supported. View the current documentation to learn how to
upgrade your version of MongoDB.
Definition
load(file)
Loads and runs a JavaScript file into the current shell environment.
The
load()
method has the following parameter:ParameterTypeDescriptionfilename
stringSpecifies the path of a JavaScript file to execute.Specify filenames with relative or absolute paths. When using relative path names, confirm the current directory using the
pwd()
method.After executing a file with
load()
, you may reference any functions or variables defined the file from themongo
shell environment.
Example
Consider the following examples of the load()
method:
load("scripts/myjstest.js") load("/data/db/scripts/myjstest.js")