isn't the db4o .OpenFile method supposed to create the filestructure if it doesn't exist? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T21:48:32Zhttp://stackoverflow.com/feeds/question/488266http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/488266/isnt-the-db4o-openfile-method-supposed-to-create-the-filestructure-if-it-doesn0isn't the db4o .OpenFile method supposed to create the filestructure if it doesn't exist?Chance2009-01-28T16:21:54Z2009-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#4903990Answer by Chance for isn't the db4o .OpenFile method supposed to create the filestructure if it doesn't exist?Chance2009-01-29T03:36:04Z2009-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>