1) If you haven't installed Notepad++, follow this tutorial, http://setup-steps.blogspot.com/2013/05/notepad-v633.html .
2) Run Notepad++.
Notice the Console Button on the tool bar towards the right border of the application window.
Click the button.
3) Type: cd \
(to go to root.)
4) Type: dir
(to display list of files/folders)
5) Type: cls
(to clear Console Panel)
6) Type: cmd /c mkdir testdir
(to make a new directory "testdir")
check by typing: dir
7) Type: cd testdir
(to go into testdir)
8) Type: cd..
(to go back to the parent directory)
9) Type: cmd /c rmdir testdir
(to remove a directory "testdir")
check by typing: dir
-----
10) If you have registered Java JDK bin path in your Windows Environment, you can type "javac -version" and "java -version" and see the response as follows:
No comments:
Post a Comment