オタクや専門家は、コマンドプロンプトを実行できる高度なコマンドがあるため、コマンドプロンプトが大好きです。(Command Prompt)幸い、コマンドプロンプト(Command Prompt)は、高度なコマンドだけでなく、基本的な操作を実行するように設計された単純なコマンドにも基づいて構築されています。この記事では、現在のディレクトリの変更、別のドライブへの切り替え、ディレクトリの内容の表示、フォルダの作成と名前の変更、ファイルとフォルダのコピー、削除、コマンドプロンプト(Command Prompt)からのアプリケーションの起動などのコマンドを実行する方法を示します。また、このアプリをWindowsで使用する際のヘルプの取得方法についても説明します。始めましょう(Let):
注:(NOTE:)このチュートリアルで共有される情報は、Windows 10、Windows 8.1、およびWindows 7に適用されます。簡単にするために、Windows10でのみ撮影されたスクリーンショットを使用していることに注意してください。
1.コマンドプロンプト(Command Prompt)(CMD)でディレクトリ(フォルダ)を変更する方法
リストの最初のコマンドはCD(ディレクトリの変更)です。(CD (Change Directory).)このコマンドを使用すると、現在のディレクトリを変更したり、PCから別のフォルダに移動したりできます。たとえば、コマンドCDを使用すると、(CD)ディレクトリツリー(directory tree)の先頭に移動します。動作を確認するには、コマンドプロンプト(Command Prompt)を開いた後、cdと入力し、キーボードの(cd)Enterキー(Enter)を押します。CDコマンドがどのようにディレクトリツリー(directory tree)の一番上に移動するかを確認する必要があります。この場合、「C:」ドライブに接続します。
コマンドプロンプト(Command Prompt)では大文字と小文字が区別されないことに注意してください。つまり、大文字、小文字、またはそれらの任意の組み合わせを使用してコマンドを入力できます。コマンドCD、cd、またはCdは、(Cd,)すべて同じように機能します。
「CD」コマンドに戻ると、「C:」ドライブのルートで作業しています。このドライブから特定のフォルダに移動する必要がある場合は、コマンド「CDフォルダ」を実行します。("CD Folder.")サブフォルダーは、円記号「。」で区切る必要があります。(".")たとえば、 "C:\Windows,"System32フォルダにアクセスする必要がある場合は、以下に示すように"cd windows\system32"と入力し、キーボードのEnterキー(Enter)を押します。
1つのフォルダを上に移動する必要がある場合は、「cd..」コマンドを使用します。Windowsフォルダに戻りたいとしましょう。「 cd ..」("cd..")と入力し、キーボードのEnterキー(Enter)を押します。
その結果、現在のディレクトリが"C:\Windows."
2.コマンドプロンプト(Command Prompt)(CMD)でドライブを変更する方法
別のドライブにアクセスするには、ドライブの文字に続けて「:」を入力します。たとえば、ドライブを「C:」から「D:」に変更する場合は、「d:」と入力してから、キーボードの("d:")Enterキー(Enter)を押します。
ドライブとディレクトリを同時に変更するには、cdコマンドを使用してから、"/d"スイッチを使用します。「"/d"ディスクボリューム(disk volume)から特定のフォルダに変更するために使用されます。
たとえば、現在「D:」ドライブを使用していて、「C:」ドライブからWindowsフォルダに戻りたい場合は、 "cd /d C:\Windows"と入力して、キーボードのEnterキー(Enter)を押します。次のスクリーンショットのように。
注:(NOTE:)ドライブ文字(drive letter)のみを入力すると、そのドライブの最新の場所に自動的に移動します。たとえば、「D:」ドライブを使用して(drive and type) "cd c:\windows"と入力した場合、何も起こらないようです。ただし、「c:」と入力すると、「C:」ドライブで最後に操作したフォルダーであると想定して、作業フォルダーが"c:\windows,"
3.コマンドプロンプト(Command Prompt)(CMD)でディレクトリの内容を表示する方法
DIRというコマンドを使用して、フォルダの内容を表示できます。それをテストするために、D:ドライブにDigital_Citizenという名前のフォルダーを作成し、いくつかのファイルとサブフォルダーを作成しました。下のスクリーンショットでそれらを見ることができます。
前回の作業フォルダは"C:\Windows."上記のフォルダに移動するには、コマンド"cd /d D:\Digital_Citizen."フォルダの内容を表示するには、DIRと入力し、 (DIR)Enterキー(Enter)を押します。そこに含まれるファイルとフォルダのリストが、それぞれの詳細(サイズと最後に変更された日時)とともに表示されます。(date and time)
4.コマンドプロンプト(Command Prompt)(CMD)を使用して新しいディレクトリを作成する方法
MKDIR(ディレクトリの作成)(MKDIR (Make Directory))またはMDコマンドを使用して新しいフォルダを作成できます。これらのコマンドの構文は、「MKDIRフォルダー」("MKDIR Folder")または「MDフォルダー」です。("MD Folder.")
"D:\Digital_Citizen"フォルダーに配置されるDigital_Citizen_Lifeという名前の新しいフォルダーを作成する必要があるとします。これを行うには、以下に示すように、 「mkdir Digital_Citizen_Life」と入力して、 ("mkdir Digital_Citizen_Life")Enterキー(Enter)を押す必要があります。
動作するかどうかをテストするには、DIRコマンドを再度使用します。新しく作成したフォルダがリストに表示されます。
注:これらのコマンドはすべて、(NOTE:)コマンドプロンプト(Command Prompt)の現在の場所に依存することを忘れないでください。たとえば、「C:」ドライブを使用していて(drive and type) 「MKDIR test」と入力すると、「C:」ドライブのルートに新しいフォルダが作成されます。
目的のフォルダーに存在しないフォルダーを作成する別の方法は、新しいフォルダーの完全なパスを入力することです。たとえば、「D:」ドライブで作業していて、「C:」にother_stuffという名前の新しいフォルダを作成する場合は、「(other_stuff) mkdir "mkdir c:\other_stuff"Enterキー(Enter)を押します。
サブフォルダーを含むフォルダーを同時に作成する必要がある場合は、「MKDIRFolderSubfolder」コマンドを使用できます。たとえば、"mkdir Digital_Citizen_Tests\Beta\Test1"と入力すると、 3つのフォルダー(Digital_Citizen_Tests、Beta、Test1)がツリーのような構造で作成されます。
5.コマンドプロンプト(Command Prompt)(CMD)を使用してファイルとフォルダーの名前を変更する方法
ファイルやフォルダの名前を変更するには、 REN(名前の変更)(REN (Rename))コマンドを使用する必要があります。フォルダの名前を変更するには、「renFolderNewFolderName」と入力します。("ren Folder NewFolderName.")たとえば、Digital_Citizen_Testsフォルダーの名前をDigital_Citizen_Final_Testsに変更する場合は、 (Digital_Citizen_Final_Tests,)「ren Digital_Citizen_Tests Digital_Citizen_Final_Tests」を実行して、 Enterキー(Enter)を押す必要があります。
ファイルの名前を変更するには、次のように同じコマンドを使用します:"renfilename.extensionnewname.extension"。たとえば、Digital_Citizen_Picture1.bmpファイルの名前をImage0.bmpに変更するには、コマンド(Image0.bmp,)「renDigital_Citizen_Image1.bmpImage0.bmp」コマンドを実行する必要があります。
ファイルとフォルダーのコピー、ファイルとフォルダーの削除、アプリケーションの起動、およびコマンドプロンプト(Command Prompt)の使用に関するヘルプの取得方法については、このチュートリアルの2ページ目をお読みください。
Command Prompt: 11 basic commands you should know (cd, dir, mkdir, etc.)
Geeks and experts love the Command Prompt because of the advanced commands it can run. Fortunately, Command Prompt is not built only on advanced commands, but also on simple ones, designed to perform basic operations. In this article, we show you how to execute commands such as changing the current directory, switching to another drive, viewing the contents of a directory, creating and renaming folders, copying, deleting files and folders, and launching applications from the Command Prompt. We are also going to show you how to get help when using this app for Windows. Let's get started:
NOTE: The information shared in this tutorial applies to Windows 10, Windows 8.1, and Windows 7. Note that, for simplicity, we are using screenshots taken only in Windows 10.
1. How to change the directory (folder) in Command Prompt (CMD)
The first command from the list is CD (Change Directory). This command enables you to change the current directory or, in other words, to navigate to another folder from your PC. For instance, the command CD takes you to the top of the directory tree. To see how it works, after you open the Command Prompt, type cd and press Enter on your keyboard. You should see how the CD command takes you to the top of the directory tree. In this case, to the "C:" drive.
Note that the Command Prompt is not case sensitive, meaning that you can type commands using capital letters, lowercase or any combination of them. The commands CD, cd or Cd, all work the same way.
Going back to the "CD" command, now you are working on the root of the "C:" drive. If you need to go to a specific folder from this drive run the command "CD Folder." The subfolders must be separated by a backslash character: "." For instance, when you need to access the System32 folder located in "C:\Windows," type "cd windows\system32" as shown below, and then press Enter on your keyboard.
When you need to go one folder up, use the "cd.." command. Let's assume that you want to go back to the Windows folder. Type "cd.." and press Enter on your keyboard.
The effect is that your current directory changes to "C:\Windows."
2. How to change the drive in Command Prompt (CMD)
To access another drive, type the drive's letter, followed by ":". For instance, if you wanted to change the drive from "C:" to "D:", you should type "d:" and then press Enter on your keyboard.
To change the drive and the directory at the same time, use the cd command, followed by the "/d" switch. The "/d" parameter is used to change the current drive to a specific folder from another disk volume.
For instance, if you are now on the "D:" drive and you want to go back to the Windows folder from the"C:" drive, you should type "cd /d C:\Windows" and press Enter on your keyboard, like in the following screenshot.
NOTE: By typing only the drive letter you automatically move to your most recent location on that drive. For instance, if you are on "D:" drive and type "cd c:\windows" nothing seems to happen. However, if you type "c:" then the working folder changes to "c:\windows," assuming that it was the last folder you worked with on your "C:" drive.
3. How to view the contents of a directory in Command Prompt (CMD)
You can view the contents of a folder by using a command called DIR. To test it, we have created a folder named Digital_Citizen on the D: drive, with several files and subfolders. You can see them in the screenshot below.
The last time, our working folder was "C:\Windows." To navigate to the folder mentioned above, we have to use the command "cd /d D:\Digital_Citizen." To view the contents of the folder, type DIR, and press Enter. The list of the files and folders contained by it is displayed, together with some details about each of them (the size and the date and time when they were last modified).
4. How to create a new directory with Command Prompt (CMD)
You can make a new folder using the MKDIR (Make Directory) or the MD command. The syntax of these commands is "MKDIR Folder" or "MD Folder."
Let's say we need to create a new folder called Digital_Citizen_Life that is going to be placed in the "D:\Digital_Citizen" folder. To do that, we need to type "mkdir Digital_Citizen_Life" and then press Enter, as shown below.
To test if it worked, use the DIR command again. The newly created folder appears in the list.
NOTE: Do not forget that all these commands depend on the current location in the Command Prompt. For instance, if you are on the "C:" drive and type "MKDIR test," the new folder is created in the root of the "C:" drive.
Another way to create a folder that does not involve being in the desired folder is to type the complete path of the new folder. For example, if you are working on the "D:" drive and you want to create a new folder in "C:," called other_stuff, type "mkdir c:\other_stuff" and then press Enter.
When you need to create a folder with subfolders at the same time, you can use the "MKDIR FolderSubfolder" command. For instance, if we type "mkdir Digital_Citizen_Tests\Beta\Test1" three folders are created: Digital_Citizen_Tests, Beta and Test1, in a tree-like structure.
5. How to rename files and folders with Command Prompt (CMD)
To rename files and folders, you need to use the REN (Rename) command. To rename folders, type "ren Folder NewFolderName." For example, if we wanted to rename the Digital_Citizen_Tests folder to Digital_Citizen_Final_Tests, we should run "ren Digital_Citizen_Tests Digital_Citizen_Final_Tests" and press Enter.
To rename a file, use the same command, like this: "ren filename.extension newname.extension". For instance, to rename the Digital_Citizen_Picture1.bmp file to Image0.bmp, we have to run the command "ren Digital_Citizen_Image1.bmp Image0.bmp" command.
Read the second page of this tutorial if you want to learn how to copy files and folders, delete files and folders, start an application, and get help when using the Command Prompt.