MACRO Creating subfolders of an existing folder

Hello

I would need your enlightenment. I'm looking to make a macro that would create 3 subfolders of an existing folder.
The existing folder is called BASE and the 3 subfolders are called Option1/Option2/Option3.
I tinkered with this code, but the macro fails to find the BASE folder, so no creation of subfolders...

image

Do you have any solutions please? :smiling_face_with_tear:

Dim swApp As Object
Dim Part As Object
Dim boolstatus As Boolean
Dim longstatus As Long, longwarnings As Long

Sub main()
    ' Initialisation appli SolidWorks
    Set swApp = Application.SldWorks
    Set Part = swApp.ActiveDoc
    
    ' Vérification doc assemblage
    If Part.GetType <> swDocASSEMBLY Then
        MsgBox "Le document actif n'est pas un assemblage. Veuillez lancer la macro sur un assemblage."
        Exit Sub
    End If
    
    ' Vérification existance dossier "BASE"
    Dim plotFolder As Object
    On Error Resume Next
    Set plotFolder = Part.FeatureManager.FeatureByName("BASE")
    On Error GoTo 0

    If plotFolder Is Nothing Then
        MsgBox "Le dossier "BASE" n'existe pas. Créer ce dossier avant d'exécuter la macro."
        Exit Sub
    End If
    
    ' Sélectionner le dossier "BASE" pour y insérer les sous-dossiers
    boolstatus = Part.Extension.SelectByID2("BASE", "FEATURE", 0, 0, 0, False, 0, Nothing, 0)
    
    ' Création sous-dossier "Option1"
    Dim myFeature As Object
    Set myFeature = Part.FeatureManager.InsertFeatureTreeFolder2(swFeatureTreeFolderType_e.swFeatureTreeFolder_EmptyBefore)
    boolstatus = Part.SelectedFeatureProperties(0, 0, 0, 0, 0, 0, 0, 1, 0, "Option1")
    
    ' Création sous-dossier "Option2"
    Set myFeature = Part.FeatureManager.InsertFeatureTreeFolder2(swFeatureTreeFolderType_e.swFeatureTreeFolder_EmptyBefore)
    boolstatus = Part.SelectedFeatureProperties(0, 0, 0, 0, 0, 0, 0, 1, 0, "Option2")
    
    ' Création sous-dossier "Option3"
    Set myFeature = Part.FeatureManager.InsertFeatureTreeFolder2(swFeatureTreeFolderType_e.swFeatureTreeFolder_EmptyBefore)
    boolstatus = Part.SelectedFeatureProperties(0, 0, 0, 0, 0, 0, 0, 1, 0, "Option3")
    
    ' Tout désélectionner
    Part.ClearSelection2 True
    
    MsgBox "Les 3 sous-dossiers ont été créés avec succès dans le dossier "BASE"."
End Sub

Hello @MLG ,

FeatureByName is a method of a part or assembly document, not the FeatureManager object...

On the other hand, creating a folder only works if a component is selected in the tree. To create subfolders of the " BASE " folder, it must therefore contain at least one component.
If so, the subfolders are created.
The attached macro should work.

CreationSsFolders.swp (43 KB)

3 Likes

The empty folders can also be created, and then moved to the BASE folder.

Here is the modified/updated version of the macro shared by @m_blt where sub folders are added to the empty BASE folder.

CreationSsDossiersV1.swp (40 KB)

1 Like

Thank you @Deepak_Gupta for the additional answer.
And very happy to welcome on this forum, one of the great contributors sw from another well-known forum! :smiley:

2 Likes

Thank you @sbadenis :smiling_face_with_three_hearts:

1 Like

A BIG THANK YOU to @m_blt & @Deepak_Gupta for their invaluable help :+1:

I adapted your codes and added the creation of the PLOTS folder (originally replacing BASE) if it does not exist. I also added the creation of derived configurations to the +SOL+PLOTS config (and creation if it doesn't exist).

Here's my code:

'----------------------------------------------------------------------
'MACRO CREATION DOSSIER/SOUS DOSSIERS PLOTS + CREATION CONFIG/SOUS CONFIGS PLOTS
'----------------------------------------------------------------------

Option Explicit

Sub Main()
    Dim swApp           As SldWorks.SldWorks
    Dim swAssemb        As AssemblyDoc
    Dim swFeature       As Feature
    Dim boolstatus      As Boolean
    Dim swPlotFolder    As FeatureFolder
    Dim myFeature       As Feature
    Dim swModel         As SldWorks.ModelDoc2
    Dim swConfMgr       As SldWorks.ConfigurationManager
    Dim swConf          As SldWorks.Configuration
    Dim swDerivConf     As SldWorks.Configuration
'----------------------------------------------------------------------
    Set swApp = Application.SldWorks
    Set swAssemb = swApp.ActiveDoc

    ' Vérif doc assemblage
    If swAssemb.GetType <> swDocASSEMBLY Then
        MsgBox "Le document actif n'est pas un assemblage. Veuillez lancer la macro sur un assemblage."
        Exit Sub
    End If

    ' Vérif existance dossier 'PLOTS'
    Set swFeature = swAssemb.FeatureByName("PLOTS")

    If swFeature Is Nothing Then
        ' Création dossier 'PLOTS' s'il n'existe pas
        boolstatus = swAssemb.Extension.SelectByID2("", "FEATUREMANAGER", 0, 0, 0, False, 0, Nothing, 0)
        Set swFeature = swAssemb.FeatureManager.InsertFeatureTreeFolder2(swFeatureTreeFolderType_e.swFeatureTreeFolder_EmptyBefore)
        swFeature.Name = "PLOTS"
        MsgBox "Le dossier 'PLOTS' a été créé.", vbInformation, "Résultat"
    End If

    ' Une fois le dossier 'PLOTS' trouvé ou créé, ajouter les sous-dossiers
    boolstatus = swAssemb.Extension.SelectByID2("PLOTS", "FTRFOLDER", 0, 0, 0, False, 0, Nothing, 0)
    
    ' Sous-dossier "PLOTS LONGS"
    Set myFeature = swAssemb.FeatureManager.InsertFeatureTreeFolder2(swFeatureTreeFolderType_e.swFeatureTreeFolder_EmptyBefore)
    myFeature.Name = "PLOTS LONGS"
    boolstatus = swAssemb.Extension.ReorderFeature("PLOTS LONGS", swFeature.Name, swMoveLocation_e.swMoveToFolder)
    
    ' Sous-dossier "PLOTS COURTS"
    Set myFeature = swAssemb.FeatureManager.InsertFeatureTreeFolder2(swFeatureTreeFolderType_e.swFeatureTreeFolder_EmptyBefore)
    myFeature.Name = "PLOTS COURTS"
    boolstatus = swAssemb.Extension.ReorderFeature("PLOTS COURTS", swFeature.Name, swMoveLocation_e.swMoveToFolder)
    
    ' Sous-dossier "PLOTS MISE EN PLAN"
    Set myFeature = swAssemb.FeatureManager.InsertFeatureTreeFolder2(swFeatureTreeFolderType_e.swFeatureTreeFolder_EmptyBefore)
    myFeature.Name = "PLOTS MISE EN PLAN"
    boolstatus = swAssemb.Extension.ReorderFeature("PLOTS MISE EN PLAN", swFeature.Name, swMoveLocation_e.swMoveToFolder)
    
    ' Mise à jour FeatureManager
    swAssemb.FeatureManager.UpdateFeatureTree

'----------------------------------------------------------------------

    'Traitement de configurations

    Set swModel = swApp.ActiveDoc

    Set swConfMgr = swModel.ConfigurationManager
    
    ' Vérifier si la configuration cible existe
    Set swConf = swModel.GetConfigurationByName("+SOL+PLOTS")
    If swConf Is Nothing Then
        ' Créer la configuration +SOL+PLOTS si elle n'existe pas
        Set swConf = swConfMgr.AddConfiguration("+SOL+PLOTS", "Configuration principale pour les PLOTS", "", 0, "", "")
        If swConf Is Nothing Then
            MsgBox "Impossible de créer la configuration '+SOL+PLOTS'.", vbCritical
            Exit Sub
        Else
            MsgBox "La configuration '+SOL+PLOTS' a été créée avec succès.", vbInformation
        End If
    End If
    
    ' Vérifier si la configuration dérivée existe déjà
    Set swDerivConf = swModel.GetConfigurationByName("PLOTS COURTS")
    If Not swDerivConf Is Nothing Then
        MsgBox "La configuration dérivée 'PLOTS COURTS' existe déjà.", vbInformation
        Exit Sub
    End If
    
    ' Créer les configurations dérivées
    Set swDerivConf = swConfMgr.AddConfiguration("PLOTS COURTS", "Configuration dérivée de +SOL+PLOTS", "", 1, swConf.Name, "")
    Set swDerivConf = swConfMgr.AddConfiguration("PLOTS LONGS", "Configuration dérivée de +SOL+PLOTS", "", 1, swConf.Name, "")

    
    ' Vérifier si la configuration a été créée
    If swDerivConf Is Nothing Then
        MsgBox "Échec de la création de la configuration dérivée.", vbCritical
    Else
        MsgBox "Configurations dérivées 'PLOTS COURTS' et 'PLOTS LONGS' créées avec succès.", vbInformation
    End If
    
    ''' Activation de la config +SOL+PLOTS
    boolstatus = swModel.ShowConfiguration2("+SOL+PLOTS")

    MsgBox "DOSSIER + SOUS-DOSSIERS PLOTS A JOUR  -  CONFIG + SOUS-CONFIG PLOTS A JOUR.", vbInformation, "Résultat"

End Sub

The MACRO worked well in the case of an assembly with 3 TEST parts:

image

But while testing on other assemblies, I have a MACRO crash from the beginning:

image

I don't understand why he tells me that a variable is not defined when at the first test it worked.

And when debugging it tells me this line:
image

Do you have any idea why it works with some parts and not others?

This is correct error as there is nothing selected to add the empty folder before. And since no folder is added, the feature (folder) can not be renamed.

So in an empty file, you can select the Mates (last feature), and add the folder before it (something like below codes)

If swFeature Is Nothing Then
    
        Dim featCount As Long
        featCount = swAssemb.GetFeatureCount
        
        Dim swLastFeat As SldWorks.Feature
        Set swLastFeat = swAssemb.FeatureByPositionReverse(0)
        swLastFeat.Select2 False, -1

        ' Création dossier 'PLOTS' s'il n'existe pas
        'boolstatus = swAssemb.Extension.SelectByID2(swLastFeat.Name, "FEATUREMANAGER", 0, 0, 0, False, 0, Nothing, 0)

        Set swFeature = swAssemb.FeatureManager.InsertFeatureTreeFolder2(swFeatureTreeFolderType_e.swFeatureTreeFolder_EmptyBefore)
        swFeature.Name = "PLOTS"
        MsgBox "Le dossier 'PLOTS' a été créé.", vbInformation, "Résultat"
    End If
4 Likes