Path of "." and ""
Alan Bateman
Alan.Bateman at oracle.com
Mon Dec 8 11:22:03 UTC 2014
On 08/12/2014 10:37, Wang Weijun wrote:
> :
> Can you be more detailed?
I don't know how normalize comes into what you are doing but this should
do it, ignoring the corner cases of where you have root components or ""
paths:
int count = p1.getNameCount();
for (int i=0; i<count; i++) {
Path tail = p1.subpath(i, count);
boolean match = tail.startsWith(p2);
}
There are other ways but I think I'd need to see more context before
going into other suggestions.
-Alan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.openjdk.java.net/pipermail/nio-dev/attachments/20141208/3f63e933/attachment.html>
More information about the nio-dev
mailing list