Posts by hofmanng • 71 points
2 posts
-
4
votes1
answer248
viewsA: Search files from a directory
I managed to solve: /* * Lista arquivos de um determinado diretório. */ String dir= teclado.getUserInput("Insira o diretório: "); File diretorio = new File(dir); File[] arquivos =…
-
3
votes1
answer248
viewsQ: Search files from a directory
I have a small application that requires a search engine capable of listing the files that contain a term informed by the user. The first functionality of the program, which is responsible for…