[Windows Convenience] Reuse folder structure to save time! How to copy only folders
@ wako _ pc _ work ← Overtime will be reduced by following!
Today, I introduced how to copy only the folder structure ✨
Please use it because it is convenient when you want to reuse the folder structure 🫶
[How to do]
① Open Command Prompt with Windows Key + R
② Enter the following and click Enter
xcopy "Source folder path" "Destination folder path"\ T\ E
< Image >
For example, if you want to copy only the folders under Project A (★ only),
Source folder path = Project A folder path
"Destination folder path" = Project B folder path
It will be!
Project Management Folder
└ Project A folder
└ Managed folder ★
└ Schedule File
└ Design folder ★
└ Design document file
└ Development folder ★
└ Development procedure file
└ Project B folder
- - - - - - - - - - - - - - -
[Self-introduction]
It's Wako!
At a major IT company, I develop apps and manage teams 💪
There is such a past.
Adaptation disorder due to working too much
Overtime is now less than 10 hours a month!
・ I was shaken by my boyfriend who I dated for 5 years
Let go of perfectionism and 😊
Meet a nice person and have a happy marriage 🕊️
These two things changed me when I was at rock bottom!
① Skill up
② Mind
We will deliver not only Excel, PowerPoint, Word but also mind and know-how to promote work easily 🫧
Nice to meet you!
Those who want to know more 👇
@ wako _ pc _ work
- - - - - - - - - - - - - - -
フォルダの「中身は要らないけど、階層(フォルダ構成)だけ同じものを作りたい」場面って結構ありますよね。私は案件ごとに「01_管理 / 02_設計 / 03_開発 / 04_テスト」みたいな定型フォルダを作るので、毎回手作業だとミスも増えるし時間も取られていました。そんな時に便利だったのが、今回の“フォルダのみコピー(中身なしでコピー)”です。 まず前提として、エクスプローラーのコピー&貼り付けだと、基本的にファイルも一緒にコピーされます。「フォルダだけコピーしたい」場合は、コマンドで“フォルダ構成のみコピー”を作るのが早いです。 私がよく使うのは記事内のとおり xcopy ですが、実行前に2つだけ確認すると失敗しにくいです。 1) パスはダブルクォーテーション(" ")で囲む フォルダ名にスペースが入っているとエラーになりやすいので、コピー元とコピー先は必ず "C:\...\プロジェクトA" のように囲みます。OneDrive配下(例:OneDrive\Documents)でも同様です。 2) コピー先フォルダは“入れ物”を用意しておく 「プロジェクトB」自体が無い状態だと、意図しない場所に作られたり確認が出たりします。私は先にプロジェクトBフォルダだけ作ってから、その中に構成を流し込むようにしています。 よくあるつまずきと対処も置いておきます。 ・実行すると「ファイル名、ディレクトリ名…」系のエラー → パスの打ち間違いが多いです。エクスプローラーのアドレスバーをクリックしてフルパスをコピーし、cmdに貼り付けると安定します。 ・“中身なし”のつもりがファイルもコピーされる → オプションが違う可能性があります。フォルダ構成だけ欲しい時は /T がポイント(/E で空フォルダも含める)です。 ・エクスプローラーだけで何とかしたい → 完全に同等は難しいですが、テンプレ用の空フォルダ一式を「ひな形」として保管しておき、それをコピーする運用もアリです(ただし更新漏れが起きやすいので、私はコマンド派です)。 定型フォルダを使い回すと、プロジェクト開始時の準備が一気に短縮できます。特に複数案件を並行する人ほど効果が出るので、「フォルダだけコピー(中身なし)」をぜひ一度試してみてください。

























































