LuminousNutria
LuminousNutria

Reputation: 2001

What does prepending a file path with "..\" do?

I had been having a difficult time getting Java to find the file I wanted it to use until I tried prepending ".." to the front of my file path. However, I'm not sure what this does specifically. I have tried to google the info and searched this website, but no relevant results popped up.

What does prepending a file path with "..\" do?

Upvotes: 0

Views: 67

Answers (1)

Deepak Patankar
Deepak Patankar

Reputation: 3302

Appending .. will mean that you are referring to the parent directory.

Upvotes: 2

Related Questions