Skip to content
Advertisement

Ideas for listing files, directories, sub files & sub directories without recursion in ftp server

I’m trying to produce file listing of a given directory and it’s sub directories in a ftp server.

The server works fine, and I have been successfully able to produce the file listing of the current directory. When I try to list the subdirectories and their files is where it gets complicated.

I was asked not to use a recursion algorithm, so I did some research of my own. I have tried using threads (for every directory found, start a new thread), but I wasn’t able to keep my connection stable and open. Any ideas on how to do so correctly with threads, or other alternatives?

EDIT: below is my code, when using the recursive statement (last line of code), it works

JavaScript

Advertisement

Answer

Okay, here is an example of how to handle it non-recursively, but with lists.

Mind, that this example is based on /accessing the local filesystem, but can easily be rewritten/extended for any kind of hierarchial/recursive structure.

JavaScript

AND, one must add, java.nio.file.Files.find() might be implemented recursively. But as it’s just one call, this maybe could count as ‘non-recursive’ too.

ALSO, as the OP stated in comments, one might use Stack or other FIFO/LIFO collections. LIFO for a mixed depth-first, FIFO for breadth-first approach.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement