creating folder in documents and settings
i am trying to create a folder in Documents and Settings filder under Windows XP environment wiht mkdirs().
this is the code
import java.io.*;
public class create {
public static void main(String a[]){
try{
File f = new File(a[0]);
f.mkdirs();
}
catch(Exception e){
System.out.println("Error : " +e);
}
}
}
if i give the argument as C:\Documents and Settings\ramesh
it is not creating anything.
also no error messages...
what i have to change?
thanks in advance
ramesh

