LoginSignup
0
0

More than 3 years have passed since last update.

わりに使うWindowsコマンド逆引き

Last updated at Posted at 2019-07-12

Windows10で動作確認済み。
随時更新予定。

フォルダ 、サブフォルダ内の全ファイル名をフルパスで出力

dir /b /s /a-d {ディレクトリ}

フォルダ、ファイルを図式で表示

tree {ディレクトリ}

ファイルを削除する

del (option) {ファイル・ディレクトリ}

フォルダを削除する

rmdir (option) {ディレクトリ}

使用例

Directoryとその配下を全削除

rmdir /s Directory 

コマンドプロンプトの画面をクリア

cls

ディレクトリとファイル、階層ごとコピー

xcopy {source} {taget}
0
0
1

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