I want to write a Java program to delete ~12 directories or files which are under my home directory. I am able to do this by using
Process proc = Runtime.getRuntime().exec("rm -rf *path*")
But I have to run this command 12 times or I can keep it in loop. What I really want is to have a file in my home directory that contains the names of all the directories and files to delete in it. My Java program should go to the home directory, read the file, and delete all the specified files.
I am stuck at the very first step – I am not able to cd to the home directory. Please let me know how can I achieve this.
Thanks for all of your replies.
But, here I don't really want to use the Java util classes rather I want to learn a way using which I can run Linux commands in my Java class. Being a deployment Intern, I have to reset the environment every time before deploying a new environment for the customer. For this, I repeatedly use some basic Linux commands. I can write a shell script to do this but for this time, I want to write a Java class in which I can put all these Linux commands and run from one class.
The commands which I use are:
- kill all java processes which are started by the admin ONLY – for this I need to use multiple Linux commands with “pipe”
- Remove all 12-directories/files from home directory
- stop some services (like siebel, etc.) – for this I need to go under the particular directories and run ./shutdown.sh or ./stop_ns, etc.
- run some database scripts – to reset the database schemas
- again start the services – same as step 2 except this time I need to run ./start_ns, etc.
I really appreciate if you can let me know a. How can I navigate into a directory using Java code b. How can I run multiple Linux commands using pipe using Java code
File.deleteinstead of shelling out? (you should) – Michael Petrotta Oct 10 '11 at 16:32