Hey guys, I was trying to implement a feature for a program I made for work, but im not sure where to even start on it.
The program is for gathering information on new products that come out. We are going to wind up having hundreds of products, and to keep everything organized I would like to have all of the product information stored in one main parent folder. Each product in that main folder is then to be designated its own directory that is devided by three categories that include pictures, performance results, and reports
The folder structure should look like this
Main Folder
Product 1
Images
Performance Results
Reports
Product 2
Images
Performance Results
Reports
and so forth.
I would like to keep the user out of the directory in able to make the program more user friendly, and also to keep users from moving files around.
Is there a way that I can have a command button that when pushed, will ask the user the product name, and then after doing so will copy and paste a template of the file structure shown above into the main parent directory?
So when the user hits this command button it will promt them for a product name, say they call it "Rubber Gasket".
Then the program will set up a directory for the user in the parent directory that looks like the following
Main Folder
Rubber Gasket
Pictures
Performance Results
Reports
I dont really know where to start on this, so i figured this would be a good place to look for hints that could point me in the right direction.
Thanks for any help in advance, and sorry for the long post.