how to list files and directories in current directory without using java.io.*?
|
|
You can use
Thanks to @Geo for the Windows commands. |
||||||||
|
|
|
You could use JNA to make native calls to the underlying OS. As an exercise in hard work it might be a worth while. |
||
|
|
|
|
Another option is writing OS specific code in C and accessing it via JNI. But once again. Why do you want this? |
||
|
|
|
|
This is actually possible without having to write any JNI or make any Runtime calls.
It's amazing what a little thought and boredom will do (and an inability to jump to hasty conclusions (where there's a will, there's a way)).
After some investigation I don't think this is possible very easily, certainly not for a homework assignment unless it's some kind of RE'ing assignment or Forensics assignment. |
|||

java.io.*? – Hosam Aly Oct 15 at 11:40