private String getPath ( File file ) {
String path = file.getAbsolutePath();
//System.out.println("old:"+path);
String str=path.replace(this.rootPath.replaceAll("\\/", "\\\\"), "\\" );
//System.out.println("new:"+str);
return str;
}