I want to open a directory using RandomAccessFile. Can I do that?
Asked
Active
Viewed 1,038 times
1 Answers
2
RandomAccessFile
cannot open directories. In Java, directories are processed using the types File
, Path
, Files
, Paths
and FileSystem
.
What exactly do you want to do?

Christian Hujer
- 17,035
- 5
- 40
- 47
-
Thank you. Looks like I am going to have to make those changes. – erfdsg Feb 16 '15 at 22:41