Hi
Yes - you could achieve this this through ArcPy and Python by:
1: Use an ArcPy Data Access SearchCursor() to return the values stored in a given attribute field.
2: Loop through the resulting object and for each value call the CreateFolder geoprocessing tool.
and that would work quite nicely.
But you can also achieve the same thing through ModelBuilder. You would need to:
1: Use the Iterate Feature Selection iterator. For the In Features parameter you should choose the dataset which contains the selected records whose attributes will be used to create the folders from.
2: Add the Get Field Value utility tool to the model and connect the Selected Features output of the iterator to the Input Table parameter of Get Field Value. You also need to specify the attribute field of your feature layer as the Field parameter of the Get Field Value utility tool.
3: Add the Create Folder tool.
4: Connect the output of Get Field Value to the Create Folder tool specifying the Folder Name parameter. You also need to select the output folder as a parameter for the Create Folder tool.
The final model should look like the one supplied..... It took me about 5 minutes to make this. Hope it helps you out! thanks ed