Creating a new or blank folder structure from a text file

While cleaning up and organizing my drives, I ran into a situation where I wanted to replicate a folder structure, but not copy any of the files. I'm going to move the files to a new location, but want to keep working and not wait for the folders to copy. Turns out there are a couple of easy ways to accomplish this. For the first method, create the directory structure you want using a plain text editor. This would be done by creating the path to lowest level folder you may need. You don't need to list all the interim directories. If I were to list: "Game Folder/Assets/Icons" it would make all three folders. If the folder name contains spaces, enclose the entire line in quotes. This is a great way to create the same folder structure over an over again for something like a website or coding project. Next, open Terminal, switch to the new Parent folder where you […]