Just a Small Question: Load path

Hi everyone, is there a way that I can load a file in a folder?
for example:

  randomString = loadString("somerandomfolder\anotherrandomfolder\finallythestringiwant.txt");

Just like Minecraft data files, there is a lot of subfolders.

1 Like

I’m assuming you are trying to get strings out of a textfile by your example.

Try the loadStrings() method.

1 Like

No, no, no. I don’t mean that. I mean like I got a folder called “something” in my data folder, and I have a text file in my something folder. Like this…

.codefile
. . codefile.pde
. . data
. . . . anotherthing.txt
. . . . something
. . . . . .thing.txt

I know I can load anotherthing.txt, but how to load the thing.txt?
Or I simply can’t?
Are there ways I can load that text file?
Sorry for the late reply, anyway.

1 Like

final String[] things = loadStrings("something/thing.txt");

Processing.org/reference/loadStrings_.html

3 Likes

Wow! It really works! Thanks!!!

1 Like