vote up 1 vote down star

I'm using the following code to get an array with all sub directories from a given path.

String[] subDirs = path.split(File.separator);

I need the array to check if certain folders are at the right place in this path. This looked like a good solution until findBugs complains that File.separator is used as a regular expression. It seems that passing the windows file separator to a function that is building a regex from it is a bad idea because the backslash being an escape character.

How can I split the path in a cross platform way without using File.separator? Or is code like this okay?

String[] subDirs = path.split("/");
flag

3 Answers

vote up 6 vote down check

Use path.getParentFile() repeatedly to get all components of a path.

Discouraged way would be to path.replaceAll("\\", "/").split("/").

link|flag
+1 there are hacky ways to do it and write ways to do it. this is the right way and will save you much pain compared to splitting with '/', '\', <inset character for OS you totally forgot about here> – ShuggyCoUk Jul 8 at 18:44
The getParentFile solution works perfectly thank your – Janusz Jul 8 at 18:45
Yes, I striked the discouraged way. Sorry. – kd304 Jul 8 at 18:46
vote up 0 vote down
path.split("[\\\\/]");

In not double escaped terms "[\/]"

That's an educated guess.

link|flag
Doesn't the Mac use something funny. There there odd Windows UNC path names. – Tom Hawtin - tackline Jul 8 at 18:58
you are probably right...I guess I wouldn't suggest using my answer. I like leaving it there though so people can see that what may sound like a good idea, isn't the right way to go about it. – jjnguy Jul 8 at 19:19
vote up 0 vote down

What about

String[] subDirs = path.split(File.separator.replaceAll("\\", "\\\\"));
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.