i\'m trying to remove junk files by using
Process p = Runtime.getRuntime().exec();
it works fine as long as i do not use wildcards, i.e. th
Use exec( String [] { cmd , arg1 , arg2...)
Here's a full example to get the result as a String : Link.