By File Array if you mean that it is an array of File objects then you can use

file[i].toString();
file[i].getAbsolutePath();
file[i].getPath();
//etc

methods to represent the file's...