Displaying the Folder Name

0
Hi Experts, While browsing the file from system I am able to display filename and size of the file but I also need to display the folder name. can any one guide me how to display the folder name? Thanks in Advance.
asked
1 answers
0

Do you mean the location of the project’s resources folder?

If you do, then the following Java snippet will reveal it as a String.
 

Core.getConfiguration().getResourcesPath().getCanonicalPath();

 

answered