Is there a way to re-structure a project's folders & files without files being copied to the root of the project? For example, the default folder structure takes this form:
What I would like to do is something like:
I like to organise my folder structure based on responsibility of the class/module (as is done in the case of projects using design patterns like MVC or MVVM). When projects get large, it's easier to manage organise the files this way. Is it possible?
B4X:
- Project
----- Files
---- etc...
----- Objects
---- etc...
----- AppName.b4i
----- AppName.b4i.meta
----- Main.bas
----- SomeModule.bas
----- AnotherModule.bas
----- Etc.bas
What I would like to do is something like:
B4X:
- Project
----- Files
---- etc...
----- Objects
---- etc...
----- Models
---- CatModel.bas
---- DogModel.bas
------ CustomViews
---- CustomModel.bas
---- CustomButton.bas
------ AppName.b4i
------ AppName.b4i.meta
------ Main.bas
------ SomeModule.bas
------ AnotherModule.bas
------ Etc.bas
I like to organise my folder structure based on responsibility of the class/module (as is done in the case of projects using design patterns like MVC or MVVM). When projects get large, it's easier to manage organise the files this way. Is it possible?