I need some help.
I use this code to get the files in a folder as an array .
String fileDir = Directorty; File dir = new File(fileDir); FileFilter fileFilter = new WildcardFileFilter("*.html"); files = dir.listFiles(fileFilter); But I want to write a file with only the files in that folder and not the path. The result is:
[C:\Askeladden-17-12-2014\.html, C:\Askeladden-17-12-2014\barnetv.html, C:\Askeladden-17-12-2014\britiskebiler.html, C:\Askeladden-17-12-2014\danser.html, C:\Askeladden-17-12-2014\disipler.html, C:\Askeladden-17-12-2014\donald.html, C:\Askeladden-17-12-2014\ekvator.html, C:\Askeladden-17-12-2014\engelskspraak.html] But I want to have it without the path
C:\Askeladden-17-12-2014\ I have been looking around the webs to find some answers, but no luck. Using this:
strFiles = Arrays.toString(files); Gives a string presented as an array with [] in each end, and I am not able to get
strFiles.replace("C:\\Askleladden" + date +"\\", ""); to work.