I created a simple application which will read all the files and folders kepts inside a folder. Whenever I build the project, I only get the jar file but the folder where the file and folders are kept have to be created. Is this supposed to be like this or I have to code something, which will create the folder upon the final build.
Share
Compilation gives you only executable file (i.e. *.jar). If you need something else to make you application works – you must do it (programmatically or not).