In my java app I need to get some files and dirs.
This is the program structure
`./main.java
./package1/guiclass.java
./package1/resources/resourcesloader.java
./package1/resources/repository/modules/ -> this is the dir I need to get
./package1/resources/repository/SSL-Key/cert.jks -> this is the file I need to get`
gui class loads the resourcesloader class which will load my resources (dir and file)
About the file I tried with
resourcesloader.class.getClass().getResource("repository/SSL-Key/cert.jks").toString()
in order to get the real path, but this way does not work...
About the dir I have no idea how to do...
Suggestions? Thanks
