Folder Sort Question

I have the folder structure shown below. I would like to sort the folders as follows:
'SubFolder1's Ascending
'SubFolder2's Descending
'Files' by Description Ascending

Is this even possible without defining a sort format filter for each SubFolder2>Top Level Folder

SubFolder1 AA
   SubFolder2 2021
      File A        Description A
      File B        Description B
      File C        Description C
   SubFolder2 2020
      File A        Description A
      File B        Description B
      File C        Description C
   SubFolder2 2019
      File A        Description A
      File B        Description B
      File C        Description C

SubFolder1 BB
   SubFolder2 2021  
      File A        Description A
      File B        Description B
      File C        Description C
   SubFolder2 2020
      File A        Description A
      File B        Description B
      File C        Description C
   SubFolder2 2019
      File A        Description A
      File B        Description B
      File C        Description C

You can use a wildcard path format to match folders under a common parent, without the format affecting the parent. They can be created in Preferences / Folders / Folder Formats.

Thanks Leo but I did a very poor job of describing my file layout.
The 'SubFolder' can be anything and the folders underneath that 2021, 2020, 2019, etc.
will always be a four character year as shown. The files can also be anything.
Not sure how a wildcard path format would apply here.

SubFolder
   2021
      File A        Description A
      File B        Description B
      File C        Description C
   2020
      File A        Description A
      File B        Description B
      File C        Description C
   2019
      File A        Description A
      File B        Description B
      File C        Description C

SubFolder
   2021  
      File A        Description A
      File B        Description B
      File C        Description C
   2020
  File A        Description A
      File B        Description B
      File C        Description C
   2019
      File A        Description A
      File B        Description B
      File C        Description C

You can use wildcards for that. e.g. C:\Blah\*\*\* would match all folders 3 levels below C:\Blah.

Thanks Leo. I finally got it to work. Nice feature I didn't know existed.