Jean Lebrument
Jean Lebrument

Reputation: 5169

Dispatch generated model from mogenerator in several subdirectories

I use mogenerator to generate my entities from my Core Data data model.

But I have a lot of generated files and I would like dispatch them in several subdirectories like:

Human
  |
   ----> User
  |
   ----> Products
  |
   ----> ...

Entities
  |
   ----> User
  |
   ----> Products
  |
   ----> ...

For now, I have only Human and Entities subdirectories to dispatch _Model and Model files.

I could create directories and drag and drop each file in the linked subdirectories each time I generate my model with mogenerator but I'm looking for a smarter solution to automate this process.

I don't know if mogenerator can manage this or if I need to use a script file for this.

Any suggestions ?

Update: The main difficulty is I have to "link" models to subdirectories. For example:

ProductA class and ProductB class should be put in the same directory: Product

Update 2:

For example, I have some models to generate:

User Recipient AProduct (abstract base class for product) ProductA (child class of AProduct) ProductB (child class of AProduct)

And I would like dispatch these classes in sub directories:

Human
  |
   ----> User
           |
            ----> User.h
           |
            ----> User.m
  |
   ----> Products
           |
            ----> AProduct.h
           |
            ----> AProduct.m
           |
            ----> ProductA.h
           |
            ----> ProductA.m
           |
            ----> ProductB.h
           |
            ----> ProductB.m

Entities
  |
   ----> User
           |
            ----> _User.h
           |
            ----> _User.m
  |
   ----> Products
           |
            ----> _AProduct.h
           |
            ----> _AProduct.m
           |
            ----> _ProductA.h
           |
            ----> _ProductA.m
           |
            ----> _ProductB.h
           |
            ----> _ProductB.m

Upvotes: 0

Views: 39

Answers (0)

Related Questions