The import of a directory does this right now.

So I am trying to make a separate checkbox to allow for that file to be used as a directory name and all associated articulations dumped into that directory

So far we have been able to track through:
We have found out that we need to create a brand new flag to the LSCP protocol to speak to linuxsampler to allow us to create folders based on instrument file name.
JSampler:
JSAddDbInstrumentsFromDirDlg.java in Fantasia (added check box to for file names as dir)
/home/chris/cvs-projects/cvs-jsampler-keyboard/jsampler/src/org/jsampler/task/InstrumentsDb.java adding to addDbInstruments a boolean to pass along to the next functions
JLSCP:
src/org/linuxsampler/lscp/Client.java
in this file we overload the addDbInstruments to accept our boolean and then pass that into the buffer writer to be accepted into the socket connection of linuxsampler.
Linuxsampler:
common/File.cpp (This is the end target for getting the protocol into the linuxsampler db)
We now need to figure out what to do with the boolean when passed to the database. How is it read and then wrote to the sqlite3 DB.
Can someone please help to guide us as to the correct way to continue? Is there an easier path? Am I on the right path?
Thanks!