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.

Sign up and earn $1000 a day ⋙

Driver Booster 12 Free: Keep 9.5M+ Drivers Up-to-Date in 1-Click

Driver Booster 12 Free: Keep 9.5M+ Drivers Up-to-Date in 1-Click

Driver Booster 12 Free is an effective tool that will keep your computers drivers up to date, which will make the system run faster and more reliably. This driver updater from IObit keeps your PC running at its best by checking for lost, out-of-date, or broken drivers immediately.

Advanced SystemCare 17 Free Review 2024 - Your Best PC Optimizer

Advanced SystemCare 17 Free Review 2024 - Your Best PC Optimizer

In an era where digital efficiency is paramount, Advanced SystemCare 17 Free emerges as a beacon for those seeking to enhance their PC's performance.

Summary of Movies & TV application shortcuts on Windows 10

Summary of Movies & TV application shortcuts on Windows 10

Summary of Movies & TV application shortcuts on Windows 10, Summary of Movies & TV application shortcuts on Windows 10 to bring you a great experience. Maybe

How to fix Messages Failed to Load error on Discord for Windows

How to fix Messages Failed to Load error on Discord for Windows

How to fix Messages Failed to Load error on Discord for Windows, Discord isn't fun if you can't read what other people write. Here's how to fix Messages error

How to display the This PC icon on the Windows 11 desktop

How to display the This PC icon on the Windows 11 desktop

How to display the This PC icon on the Windows 11 desktop, During the process of using Windows 11, many users need to access This PC (management).

How to find information in the Windows Registry quickly

How to find information in the Windows Registry quickly

How to find information in the Windows Registry quickly, Do you find it difficult to find information in the Windows Registry? So below are quick ways to find the registry

How to limit the number of failed login attempts on Windows 10

How to limit the number of failed login attempts on Windows 10

How to limit the number of failed login attempts on Windows 10. Limiting the number of failed password login attempts on Windows 10 helps increase computer security. Here's how

How to create fake error messages in Windows

How to create fake error messages in Windows

How to create fake error messages in Windows, Windows can come up with some pretty creative error messages but why don't you try creating your own content for them to make fun of?

Ways to open Windows Tools in Windows 11

Ways to open Windows Tools in Windows 11

Ways to open Windows Tools in Windows 11, Windows Administrative Tools or Windows Tools are still useful on Windows 11. Here's how to find Windows Tools in Windows 11.

How to fix Windows Quick Assist not working error

How to fix Windows Quick Assist not working error

How to fix Windows Quick Assist not working error, Windows Quick Assist helps you connect to a remote PC easily. However, sometimes it also generates errors. But,

How to pin Word, Excel and PowerPoint files to the corresponding app icon on the Windows 11 taskbar

How to pin Word, Excel and PowerPoint files to the corresponding app icon on the Windows 11 taskbar

How to pin Word, Excel and PowerPoint files to the corresponding app icon on the Windows 11 taskbar, How to pin Office files to the taskbar icon on Windows 11? Invite

How to fix the error of not being able to install software on Windows

How to fix the error of not being able to install software on Windows

How to fix the error of not being able to install software on Windows, Why can't you install apps or software on Windows 10/11? Here's everything you need to know about how to fix it

Instructions for deleting or changing PIN on Windows 11

Instructions for deleting or changing PIN on Windows 11

Instructions for deleting or changing the PIN code on Windows 11, In Windows 11, the PIN code is a very useful and convenient security tool for users. However some people

How to fix There Are Currently No Power Options Available error in Windows 10

How to fix There Are Currently No Power Options Available error in Windows 10

How to fix There Are Currently No Power Options Available error in Windows 10, Can't select power mode in Windows 10, what should I do? Here's how to fix the error

The simplest way to fix Photos application errors on Windows 10

The simplest way to fix Photos application errors on Windows 10

The simplest way to fix Photos app errors on Windows 10, what should I do if Microsoft Photos doesn't work? Don't worry about ways to fix Photos app errors on Windows

Instructions for installing keyboard shortcuts to switch input languages ​​on Windows 11

Instructions for installing keyboard shortcuts to switch input languages ​​on Windows 11

Instructions for installing shortcuts to switch input languages ​​on Windows 11. During the process of using Windows, users will often have to switch between methods.

How to check supported power status on Windows 11

How to check supported power status on Windows 11

How to check power status is supported on Windows 11, Windows 11 can handle many different power states. Here's how to check the power status

How to switch from 2.4GHz to 5GHz in Windows 10

How to switch from 2.4GHz to 5GHz in Windows 10

How to switch from 2.4GHz to 5GHz in Windows 10, If you want to find a quick and simple way to speed up the Internet, changing the WiFi band from 2.4GHz to 5GHz may help.

How to fix Not Enough Memory to Run Microsoft Excel error on Windows

How to fix Not Enough Memory to Run Microsoft Excel error on Windows

How to fix Not Enough Memory to Run Microsoft Excel error on Windows, Are you having an error of not enough memory to run Microsoft Excel? So, how to fix Not Enough Memory error

Ways to find all video files on Windows

Ways to find all video files on Windows

Ways to find all video files on Windows, Can't find recorded and saved videos on PC. Below are ways to help you find all clips on Windows.