0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

🚀 VSCodeのターミナルでファイル作成時のエラー解決方法!

Last updated at Posted at 2025-02-05

VSCode のターミナルで touchecho を使おうとして、
「操作可能なプログラムまたはバッチファイルとして認識されていません」 というエラーが出た!!

原因 → Windows のコマンドプロンプト(cmd)では touch コマンドが使えない!
解決策 → type nul > ファイル名 または echo. > ファイル名 を使う!


🔹 まず、今どのターミナルを使っているか確認!

VSCode のターミナルは、2種類のシェル(コマンド環境) が使える!

  1. PowerShell(デフォルト)
  2. コマンドプロンプト(cmd)

ターミナルの左上に「PowerShell」または「cmd」と書いてあるのを確認!


✅ Windows でファイルを作成する方法

1️⃣ コマンドプロンプト(cmd)の場合

type nul > myfile.txt   (← 空のファイルを作成)
echo. > myfile.txt      (← 空のファイルを作成)

2️⃣ PowerShell の場合

New-Item myfile.txt     (← 空のファイルを作成)

3️⃣ WSL(Windows Subsystem for Linux)を使っている場合

touch myfile.txt        (← `touch` コマンドが使える!)

※ WSL なら touch が使えるが、普通の Windows 環境(cmd や PowerShell)では使えない!


🔹 VSCode で PowerShell → コマンドプロンプトに切り替える

もし New-Item も動かない 場合、ターミナルが PowerShell ではなく cmd になっている可能性がある!

1️⃣ ターミナルのシェルを変更

  1. VSCode のターミナルを開く(Ctrl + ~
  2. ターミナルの左上にある「^(矢印アイコン)」をクリック
  3. 「PowerShell」または「コマンドプロンプト(cmd)」を選ぶ!

2️⃣ VSCode のデフォルトターミナルを変更(ずっと PowerShell を使う場合)

  1. Ctrl + Shift + P(コマンドパレットを開く)
  2. 「既定のプロファイルを選択」 と検索して選択
  3. 「PowerShell」または「コマンドプロンプト」を選択!
  4. VSCode を再起動!

✅ まとめ

環境 コマンド
cmd(コマンドプロンプト) type nul > myfile.txt または echo. > myfile.txt
PowerShell New-Item myfile.txt
WSL / Linux / Mac touch myfile.txt

💡 Windows の標準環境(cmd や PowerShell)では touch は使えない!
💡 自分のターミナル環境を確認し、正しいコマンドを使おう! 🚀✨

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?