Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For new applications written in Java 7, is there any reason to use a java.io.File object any more or can we consider it deprecated?

I believe a java.nio.file.Path can do everything a java.io.File can do and more.

share|improve this question

4 Answers

up vote 19 down vote accepted

This question is going to elicit a lot of subjective responses. If you haven't already, I suggest you read the Legacy File I/O Code tutorial. And then come to your own conclusion.

share|improve this answer

can we consider it deprecated?

Not unless and until it is so marked in the Javadoc.

share|improve this answer

Check this article about more info - http://java.sun.com/developer/technicalArticles/javase/nio/

Basically file.Path will be the way to go from now on but as is widely known Java people tend to keep back-compatibility so I guess that's why they have left it.

share|improve this answer

Yes, but many existing APIs, including Java7's own standard APIs, still work only with File type.

share|improve this answer
1  
Path objects can be converted to File objects using Path.toFile(), then use standard APIs. – jacktrades Jan 10 at 13:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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