How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux

If you’ve found an effective way to organize your data across folders and subfolders, you probably want to replicate that structure. However, typical ways of copying folders also include duplicating files, so you’ll have to waste time emptying the folders. Fortunately, several methods bypass this issue in Windows 11 and 10, macOS, and Linux-based computers. Continue reading to find out how to duplicate a folder structure without its original files.

How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux

Copy Folder Structure Without Copying Files in Windows 11

Windows File Explorer offers no built-in option for automatically replicating complex folder structures. Going through folder hierarchies and replicating them is tedious and requires time and effort. Luckily for Windows 11 users, there are still two other methods to copy folder structures without transferring files.

The first way involves using the Command Prompt. “Xcopy” is short for “extended copy” and this command allows you to transfer folder structures to a new storage location without duplicating the files. The command line uses the “/t” switch to do so. The issue is that the duplicating switch cannot detect empty folders, so it’s necessary to modify it and add the “/e” switch. Combining the two helps the Command Prompt to identify empty folders and copy their organization model. Here’s how to use “xcopy” in the Command Prompt:

  1. Hold Windows + R to open the Run dialog.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  2. Type cmd in the dialog window and click on the OK button to launch the Command Prompt.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  3. In the Command Prompt window, type the following without pressing enter:
    xcopy
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  4. Enter the path that stores the folder structure you want to duplicate. Ensure you have a space after xcopy.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  5. Type the destination path where you want to store the copied hierarchy. Ensure there is a space after the source directory.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  6. Type the switches below. Ensure there is a space after the destination directory.
     /t /e
  7. Your completed command should look something like this:
    xcopy “C:\users\my_username_here\Documents\Archived\Work” “D:\Backups\Documents\Work” /t /e
    The example command above copies the archived work folder structure and pastes it into a new/active work directory.
  8. Tap Enter on the keyboard to activate the command to copy the folder structure.

The “/t” switch creates the folder structure in the destination directory.

The “/e” switch includes and adds all empty folders to the destination directory.

You can also use the Command Prompt with a Robocopy command to copy folder directories, hierarchies, and structures. Microsoft intended for Robocopy to serve as a more functional version of xcopy, providing users with more options to manipulate and organize files and folders.

Robocopy lets you rerun the command multiple times, and you can use it to add new folders without recopying everything. The feature takes the hassle of copying complicated file directories by typing a relatively short command line. To do so:

  1. Press Windows + R to launch the Run dialog.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  2. Type cmd in the pop-up window.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  3. Hold down Ctrl + Shift + Enter to enable the Run as administrator option.
  4. When the Command Prompt window appears, type the following command line:
    robocopy
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  5. Type the source folder structure in quotations with a space after it.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  6. Type the destination folder structure with quotations and a space after it.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  7. Copy the following switches and paste them at the end of the command:
    /e /xf
  8. Your completed command should look something like this:
    robocopy “C:\users\my_username_here\Documents\Archived\Work” “D:\Backups\Documents\Work” /e /xf *
  9. Hit the Enter key to activate the command.

The “/e” switch allows the system to copy empty folders in the directory structure.

The “/xf *” switch tells the command to exclude files.

The second option for Windows 11 users is copying folder structures with third-party software. This is an excellent choice if you feel uncomfortable when working with command lines or are uncertain about your technical knowledge. One of the most user-friendly programs is Duplicate Directory. The developers want you to determine how useful the tool is, so there’s no fixed price tag. The customers can donate any amount they want to download the software. To replicate structures with Duplicate Directory, do the following:

  1. Download and launch Duplicate Directory.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  2. Choose the original folder structure path.
  3. Select the copied folder structure location path.
  4. Press the Duplicate button.

The program will replicate all the source folders in a new location without moving or copying the files.

Copy Folder Structure Without Copying Files in Windows 10

Windows File Explorer is useful for manually creating folders for your files, but it has no feature that lets Windows 10 users create copies of folder structures and directories. If you’re working on intricate personal or professional projects, your folders are probably packed with subfolders. Recreating this structure takes a lot of patience and energy. Fortunately, you can use command lines to recreate folder structures with ease.

Command lines act as pseudo-code and are typically used with the Command Prompt to execute various tasks. The “xcopy” command replicates folders, and you can modify it using switches that determine which aspects will be copied or excluded. The “/t” switch signals to the system that it should replicate all folders without the files. Since this function doesn’t register empty folders, the command line will also include the “/e” switch. The system will scan structures containing empty folders and replicate them in their entirety. To execute the command:

  1. Tap Windows + R to open the Run dialogue.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  2. Type cmd and click on OK to launch the Command Prompt.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  3. Type or copy/paste the following command (include the space at the end) without pressing the Enter key:
    xcopy
  4. Type the source directory within quotation marks and add a space after it. Don’t press Enter.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  5. Type the destination folder where you’ll copy the source’s folder structure, then add a space after it. Do not press Enter.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  6. Copy and paste the following switches:
    /t /e
  7. Your complete command line should look something like this:
    xcopy “C:\users\my_username_here\Music” “F:\Music” /t /e
    The above example copies the folder hierarchy/structure (including empty folders) of the user’s Music folder and creates it in the external drive’s Music folder.
  8. Press Enter on your keyboard.

Another option is the Robocopy command which allows multiple repeat actions and lets you add only new folders if desired. Here’s how to copy a folder structure with a Robocopy line:

  1. Click on Windows + R to bring up the Run dialog.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  2. Type cmd in the new window.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  3. Hold Ctrl + Shift + Enter to run the Command Prompt as administrator.
  4. Type the following text (with a space at the end) into the command line without pressing Enter:
    robocopy
  5. Type the source folder with quotation marks at the ends, and add a space after it. Do not press Enter.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  6. Type the destination folder and add a space after it. Do not press Enter.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  7. Type or copy/paste the following switches:
    /e /xf
  8. Tap the Enter key to launch the complete command.

The action replicates the structure, preserving all subfolders and excluding the original files.

The “/e” switch tells it to include all empty folders and subfolders (everything).

The “/xf” switch excludes files.

Copy Folder Structure Without Copying Files on a Mac

If you have a MacBook, you can copy a folder structure with a command line or third-party software.

MacOS executes commands using Mac Terminal. To copy a folder structure with the program:

  1. Open the source folder of the structure.
  2. Open the destination folder for the duplicate structure.
  3. Tap the Launchpad button and type Terminal in the search bar.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  4. When it shows up in the search results, tap the program to open it.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  5. Type the following command in the Terminal window: rsync -avf"+ */" -f"- *"
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  6. Drag and drop the source folder into the window.
  7. Drag and drop the destination folder into the Terminal as well.
  8. Press Enter on the keyboard.

The action will clone the folder structure in the new location without keeping any original files.

You can also copy structures and hierarchies with the Duplicate Directory software. The app doesn’t involve writing command lines and works on donations. Users can decide how much the program is worth and download it after making a donation. Here’s how to use the software:

  1. Download and launch Duplicate Directory.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  2. Pick the source path of the folder structure.
  3. Select the location path of the cloned structure.
  4. Click on the Duplicate button.

The program will replicate the folders and subfolders, but won’t preserve the files, allowing you to store and organize new data.

Copy Folder Structure Without Copying Files in Linux

Linux systems let users execute numerous commands, but it’s sometimes challenging to remember all the command lines. The quickest way to copy a folder structure in Linux is with the “rsync” command, a tool for replicating files and directories. Since “rsync” utilities come preinstalled on Linux products, cloning folder hierarchies without files is relatively straightforward. To do so:

  1. Press Crtl + Alt + T to open the Terminal app.
  2. Type the following “rsync” command in the Terminal window: $ rsync -av -f "(source)" "(destination)"
  3. Replace “source” with the path containing the original folder structure.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  4. Replace “destination” with the path where the copied structure will be created.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux
  5. Hit the Enter key.
    How To Copy Folder Structure Without Copying Files On A Windows PC, Mac, Or Linux

The modified command line instructs the system to replicate folders and subfolders but skip files.

Replicate Folder Structures Efficiently

Our laptops and PCs help us keep track of personal and professional information and documents, so it’s essential that the data is well-organized. To ensure your data is in order, you can replicate empty folder structures on your device using either command lines or third-party programs.

Have you ever copied a folder hierarchy or directory? Did you use one of the methods outlined in this article? Let us know in the comments section below.

Leave a Comment

Outlook Inbox Repair Tool

Outlook Inbox Repair Tool

The Outlook Inbox Repair Tool fixes corrupted PST files quickly so you can recover emails and restore normal Outlook function. Follow these exact steps to run scanpst.exe without data loss.

Adobe PDF Installer Offline

Adobe PDF Installer Offline

Get the Adobe PDF Installer Offline to install Acrobat Reader on any PC without needing internet during setup. Follow these exact steps for the full standalone package.

How to Chromecast from Laptop to TV

How to Chromecast from Laptop to TV

Learn how to Chromecast from laptop to TV with this step-by-step guide. Stream browser tabs, videos, or your full screen from Windows or Mac to your TV in minutes.

How to Edit an Adobe PDF File

How to Edit an Adobe PDF File

Learn how to edit an Adobe PDF file in Adobe Acrobat with precise steps for text, images, and layout changes. Make professional edits quickly and save time.

Free Foxit Reader Free Download

Free Foxit Reader Free Download

Get your Free Foxit Reader Free Download from the official source with this step-by-step guide that ensures a safe and quick installation for viewing PDFs.

How to Get Help in Windows 11

How to Get Help in Windows 11

Learn how to get help in Windows 11 with built-in tools like the Get Help app and Quick Assist for fast, official support without third-party downloads.

How to Retract an Outlook Email

How to Retract an Outlook Email

Learn how to retract an Outlook email in Microsoft Outlook when you need to correct a mistake before the recipient opens it. Follow these precise steps for Exchange accounts.

How to Chromecast in Samsung TV

How to Chromecast in Samsung TV

Learn how to Chromecast in Samsung TV by connecting a Chromecast device and streaming from your phone or computer in just a few minutes.

Adobe Acrobat DC Reader Free Download

Adobe Acrobat DC Reader Free Download

Get the official Adobe Acrobat DC Reader free download safely. Follow this step-by-step guide to install the latest version for viewing and editing PDFs on Windows or Mac.

How to Update to Win 11

How to Update to Win 11

How to Update to Win 11 from Windows 10 safely with this detailed guide. Check requirements, run the upgrade, and enjoy new features and better security on compatible hardware.