I'm using Java 1.6 with GWT 2.4.
I'm very well aware that we can get current working directory in Java using the following code:
System.getProperty("user.dir");
But GWT won't allow me to use System class at client side.
So my question is: Is there any way to get the current working directory path in GWT?