Simple Sand Samples |
説明のないとってもシンプルなサンプルプログラム集
COBOL | awk | C言語 | D言語 | GO言語 | Lua | Vim |
bash | Perl | Gauche | Clojure | CLISP | EmacsLisp | VimScript |
tcsh | Ruby | Groovy | Java | C# | VBScript | JavaScript |
Io言語 | Python | Erlang | Scala | VB.NET | Excel/VBA | PHP |
Tcl | Haskell | OCaml | PowerShell | Windows | Unix/Linux |
Windowsコマンド > RMDIR ディレクトリ削除
|
|
C:\sample>DIR /W DIR1
ドライブ C のボリューム ラベルがありません。
ボリューム シリアル番号は 14FC-0EB4 です
C:\sample\dir1 のディレクトリ
[.] [..]
0 個のファイル 0 バイト
2 個のディレクトリ 31,376,871,424 バイトの空き領域
C:\sample>
C:\sample>DIR /W dir1
ファイルが見つかりません
C:\sample>
C:\sample>DIR /B/S
C:\sample\dir1
C:\sample\dir1\dir2
C:\sample\dir1\file11
C:\sample\dir1\file12
C:\sample\dir1\dir2\file21
C:\sample>
C:\sample>DIR /W dir1
ファイルが見つかりません
C:\sample>
ドライブ C のボリューム ラベルがありません。
ボリューム シリアル番号は 14FC-0EB4 です
C:\sample\dir1 のディレクトリ
[.] [..]
0 個のファイル 0 バイト
2 個のディレクトリ 31,376,871,424 バイトの空き領域
C:\sample>
空のディレクトリを削除する
C:\sample>RMDIR dir1C:\sample>DIR /W dir1
ファイルが見つかりません
C:\sample>
C:\sample>DIR /B/S
C:\sample\dir1
C:\sample\dir1\dir2
C:\sample\dir1\file11
C:\sample\dir1\file12
C:\sample\dir1\dir2\file21
C:\sample>
親ディレクトリを含めて空のディレクトリを削除する
C:\sample>RMDIR /S/Q dir1C:\sample>DIR /W dir1
ファイルが見つかりません
C:\sample>