I need to maintain a file system in mongo where I need directories to be created and file should be placed in the directory which i have created. So is there any in built functionality in python or how we can do that using GridFs?. So basically along with uploading the file i need to mention the directory where it needs to be placed
Is there a method available to store a file in mongo under a specific directory
172 Views Asked by shyam sundar At
1
There are 1 best solutions below
Related Questions in PYMONGO
- MongoDB string index that is not text?
- How to specify a unsafe/safe write with pymongo's collection.update_one or update_many
- MongoDB $nin query exceeds BSON document size limitation
- pymongo.errors.OperationFailure: database error: Can't canonicalize query: BadValue unknown operator: $set
- How to import and export MongoDB indices to JSON with PyMongo
- pymongo - TypeError: document must be an instance of dict, bson.son.SON, or other type that inherits from collections.MutableMapping
- Inputing a String into MongoDB using Pymongo
- Initializing class variables only once
- 'NoneType' object has no attribute 'kill_cursors' when nltk is imported
- Updating Nested Document In MongoDB using Pymongo
- Can I use a field called size in a MongoEngine document?
- How to change default authentication method from SCRAM-SHA-1 back to MONGODB-CR
- When I use pymongo2.8, There is a error(pymongo.errors.OperationFailure: None)
- How to remove duplicate values inside a list in mongodb
- How to use pymongo for writing/reading to two different mongo servers (with different versions of mongo 2.4 and 3.0.3)
Related Questions in GRIDFS
- Mongodb to Mongodb GridFS
- Extract file from MongoDB using GridFs - file with id ### not opened for writing
- Matching result of MongoController.serve
- Download of GridFs using nodejs does not start
- Issue with downloading a file from GridFS in MongoDB/NodeJs/GridFS stack
- chrome and safari don't render images in html template served by a go server with Content-Length is set
- How to Store Images into Specified Collections in MongoDB
- Trying to use fs.get function to get the chunks in mongoDB
- How to overwrite image in mongoDB gridfs?
- How to read file contents and store it in mongo db
- Display images from gridfs with nodejs
- React + Meteor filestorage
- what is the encoding of upload .ogg file to mongodb with python?
- how can I play the ogg file from mongodb through php
- Using Gridfs under Laravel 5.3 with mongo-php-library 2.2 driver
Related Questions in MULTER-GRIDFS-STORAGE
- how to upload products form and images to MongoDB atlas server?
- Failling to read properties of the file after saving it in mongoDb
- How to handle "MongoServerError" which is causing server crash
- Getting a 500 error when send a post request from my React app using Multer
- How do I solve gridFS TypeError: Cannot read properties of undefined (reading '_id') [0] at GridFSBucketWriteStream.emitFile
- multer-gridfs error " TypeError: Cannot read properties of undefined (reading '_id') "
- Running `npm install` changes installed multer version
- Error with the _id property in GridFS storage in mongoDB while uploading files
- Gridfs file retrieval does not send the file back
- mongoose - multer - multer-gridfs-storage: The database connection must be open to store files
- Small images (<4MB) in MongoDB, should I use gridFS?
- Is there a method available to store a file in mongo under a specific directory
- Multer GridFsStorage Dynamic Configuration for Multiple MongoDB Connections
- gfs.files.findOne(): cannot find files of undefined
- Display audio file in frontend through axios get request. Nodejs Reactjs Mongodb , multer , Gridfs
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
GridFS permits specifying the name of the file. You can put anything you like in there including a path where components are separated by slashes so that it looks like a filesystem path.
However, GridFS does not provide any facilities for hierarchical traversal of stored files (i.e. grouping files into directories). You'd have to implement that in your own application/library if you need this functionality.