AbstractBuild<?, ?> build;build.getWorkspace().toString();Thanks
AbstractBuild r;
hudson.FilePath hudsonFile;
if(r.getWorkspace().isRemote())
{
VirtualChannel vc = r.getWorkspace().getChannel();
String fp = r.getWorkspace().getRemote();
hudsonFile = new hudson.FilePath(vc,fp);
}
else {
hudsonFile = r.getWorkspace();
}