Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code (removed error checking to keep it concise) which uses the node-mongodb-native.

var mongo = require('mongodb').MongoClient;
var grid = require('mongodb').GridStore;
var url = 'mongodb://localhost:27017/mydatabase';

mongo.connect(url, function(err, db) {
    var gs = new grid(db, 'myfile.txt', 'w', {
        "metadata": {
            // metadata here
        }   
    }); 
    gs.open(function(err, store) {
        gs.writeFile('~/myfile.txt', function(err, doc) {
            fs.unlink(req.files.save.path, function (err) {
                // error checking etc
            }); 
        }   
    }); 
}); 

If I run that once it works fine and stores the file in GridFS.

Now, if I delete that file on my system and create a new one with the same name, but different contents, and run it though that code again it uploads it. However, it seems to overwrite the file that is already stored in GridFS. _id stays the same, but md5 has been updated to the new value. So even though the file is different, because the name is the same it overwrites the current file in GridFS.

Is there a way to upload two files with the same name? If _id is unique, why does the driver overwrite the file based on file name alone?

I found a similar issue on GitHub, but I am using the latest version of the driver from npm and it does what I explained above.

share|improve this question

1 Answer

up vote 1 down vote accepted

Like a real filesystem, the filename becomes the logical key in GridFS for reading and writing. You cannot have two files with the same name.

You'll need to come up with a secondary index of some sort or a new generated file name.

For example, add a timestamp to the file name.

Or, create another collection that maps generated file names to the GridFS structure to whatever it is that you need.

share|improve this answer
I see what you mean. Upon looking at the documentation more throughly, it looks like the filename is actually optional. I will just put it in the metadata to query against and forget the filename field itself. Files Collection – Newbzors Jan 14 at 0:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.