I'll be having lot of files in a directory. I'll be just getting the file names using File.getName() and log them to a log file. I presume, I don't need to close the file since I'm not doing any read/write operation in it.
Is this correct?
|
You never have to close |
||||
|
|
In java API there is a interface Closeable Interface, those classes implement this interface they need to be close after use.
And use of close is
|
||||
|
|
|
Yes, that's correct. When you open a file by creating a |
|||
|
|
File#list()– Binyamin Sharet Nov 21 '11 at 12:29Fileclass doesn't represent an open file, it just represents a path. – Wyzard Nov 21 '11 at 12:30