Organizing My Code With Folders in the IDE

The Insert button on the IDE button bar allows me to insert a Folder into the project. I attempted to move all my defined classes into a “MyClasses” folder. Is that going to work? Will I have to prepend all my class references with MyClasses?

I’m assuming that’s what the folder is for: code organization. However, we all know what happens when we make assumptions. :smiley:

I searched the docs for “insert folder,” but no dice. What’s a better search term for that?

[quote=483956:@Christopher Lester]The Insert button on the IDE button bar allows me to insert a Folder into the project. I attempted to move all my defined classes into a “MyClasses” folder. Is that going to work? Will I have to prepend all my class references with MyClasses?
[/quote]
no
folders are “invisible” to the compiler- as far as its concerned they do not exist at all
they are just an organizational aid for us humans :slight_smile:

I actually searched the forum after my post and found some good info. Note to self: search the forum. Always.