Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm working on a mac and I'm trying to specify the path to a file on my desktop.

I just did it like this: File file = new File("/users/desktop/sample.json");

When I tried running it I got a FileNotFoundException.

How do I correctly specify the path?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
526 views
Welcome To Ask or Share your Answers For Others

1 Answer

Mac OS X's filesystem is case sensitive. Users and Desktop should start with capital letters, and your filename should also match case too.

Since you're looking for your desktop folder and not the root folder of a user with the name desktop, you need to add your username after the Users folder. For example:

File file = new File("/Users/LuxuryMode/Desktop/sample.json");

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...