I have a File pointing to a base dir:
File baseDir = new File("c:\\baseDir");
now I want to "go into a subdir":
File subDir = new File("c:\\baseDir\\subDir");
I only found how I can do it via strings concatenation. But is there an API function to do the job?