isn't the db4o .OpenFile method supposed to create the filestructure if it doesn't exist? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:48:32Z http://stackoverflow.com/feeds/question/488266 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/488266/isnt-the-db4o-openfile-method-supposed-to-create-the-filestructure-if-it-doesn 0 isn't the db4o .OpenFile method supposed to create the filestructure if it doesn't exist? Chance 2009-01-28T16:21:54Z 2009-03-20T15:02:37Z <p>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: </p> <pre><code> db = Db4oFactory.OpenFile("E:/test-projects/db4o/db"); </code></pre> <p>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?</p> <p>Thanks!</p> http://stackoverflow.com/questions/488266/isnt-the-db4o-openfile-method-supposed-to-create-the-filestructure-if-it-doesn/490399#490399 0 Answer by Chance for isn't the db4o .OpenFile method supposed to create the filestructure if it doesn't exist? Chance 2009-01-29T03:36:04Z 2009-01-29T03:36:04Z <p>Apparently you have to suffix a file extension. I was thinking that it would need more than one file and thus need a directory. </p>