Last Reviewed:  April 13, 2023

Replicate a Cabinet's Structure

It's sometimes necessary to replicate the drawers, and perhaps also the folders, of a cabinet without copying any of the files. For example, you may want to start with an empty cabinet at the beginning of each year, but still have your current drawer and folder structure.

There are two ways you can do this.

Using a Folder Template

You can turn your whole cabinet into a folder template which will store the complete layout of drawers, folders, and subfolders, but none of the files:

  1. Right-click on the Cabinet's tab
  2. Select Create Folder Template from Cabinet
  3. Give the template a name (it doesn't matter what it is)
  4. Make any changes to the layout you'd like
  5. Click OK

Now create a new cabinet (probably empty, but it doesn't have to be). Then apply your template to the cabinet:

  1. Right-click on the new cabinet's tab
  2. Select Apply Folder Template to Cabinet
  3. Select the template you created in the last step
  4. Click OK

Your template will be applied to the cabinet.

Using a DOS Command

There's a DOS trick you can use to do this. Use the first line below if you only want to copy the drawers, or the second line if you want to copy folders too:

xcopy /T source target
xcopy /T /E source target

Here's how it would work. Suppose I have a cabinet at c:\mycabinets\2008 and I want to create a 2009 cabinet with exactly the same structure, including all current drawers and subfolders, but without any of the files. I want the new cabinet to be at c:\cabinets\2009.

First I need to open a command prompt (DOS window), which can be done from the Windows "Start" button > "Run", and enter "cmd" (without quotes) as the program to run. Then I would type the following command:

xcopy /T /E "c:\cabinets\2008" "c:\cabinets\2009\"

Notice that the first path doesn't end in a backslash "\" but the second path does. The quotation marks are also important, especially if there are spaces in any of the paths.

To only copy the drawers (not the subfolders), omit the "/E":

xcopy /T "c:\cabinets\2008" "c:\cabinets\2009\"

A better solution starts right here.

Download your free trial and get on the path to better file organization in 2 minutes.

  • Fully-operational, 15-day trial
  • Windows desktop software
  • No credit card required, no strings attached.