show/hide this revision's text 2 edited tags

show/hide this revision's text 1

isn't the db4o .OpenFile method supposed to create the filestructure if it doesn't exist?

When using Db4oFactiory.OpenFile("somename"); it was trying to drop the folder "somename" into the visual studio directory and getting denied permission. I solved this by giving it an absolute path:

        db = Db4oFactory.OpenFile("E:/test-projects/db4o/db");

and now I'm catching a FileNotFoundException but the db4o docs explicitly say that if there isnt a db already in play, that OpenFile will generate them. What am I missing?

Thanks!