How to copy directory structure without files?
You may know you can use xcopy command for this. Damn, you even read some help how to use it. WHY O WHY is it not working?
The problem is with long directory names containing special characters. Please don't ask why is Microsoft putting crucial system files into such.
So, after one hour of typing crap into command line, you found this page.
The Solution:
- Make directory, where you will put your "stuff". Maybe g:\fpsupdate.
- Using Total Commander, go to C:\Program Files (x86)\The Game Creators\ (supposing its your instalation path)
- type cmd into Total Commander command line
- type xcopy *.* g:\fpsupdate /t /e
Note: You don't need Total Commander for this. If you are retro Tron freak, you may spend afternoon navigating your folders with system commands. Enjoy!