Skip to content
Advertisement

How can I provide this sort of String builder class?

I like to have a Drive class where all files and folders for a project are managed.

My first attempt was pretty easy like a lot of functions (most of them with arguments).

Now I try to make it more fancy because it became more and more annoying to have a lot of functions, in which the desired one can be found. To not have an XY-problem here, I start with my dream. I like to construct the Drive class in a way, so that it is super easy to find a certain file or folder.

If you look in the main function, I can find every needed file by writing a point and look which subclasses/methods are proposed to continue, till I find it and add .str to it. At every point, only the subclasses/methods will be proposed which makes sense at this point. It almost works! It is more complicated to write and maintain as the first approach, but If I use it very often, it could be worth it.

I can:

  1. go into subfolders
  2. go into subfolders with name inside the argument

But there is an error if I define a fixed-name-subfolder of a fluid-name-folder like in the code below.

Now my questions:

  1. how can I change the code so the main Function doesn’t show this error?
  2. would you recommend a completely different approach to the “make it easy to find strings inside a huge list of strings via making collections inside collections… of strings”-problem?
JavaScript

Advertisement

Answer

You can encode your “directory” structure with interfaces, with each interface declaring what the user can do next. Then the implementation can use a StringBuilder to just append the appropriate snippets and keep returning this.

JavaScript
JavaScript

Usage:

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