I'm trying to get the scratch and current workspaces returned as path names (Strings) using java in ArcGIS10. however I can't seem to get anything returned. I'm guessing it's to do with accessing the environments in Arc but the API is woeful.
asked Apr 9, 2012 at 21:59
1 Answer 1
I know this is a late response, but here it is for the scratch workspace:
IScratchWorkspaceFactory scratchWSF=new ScratchWorkspaceFactory();
IWorkspace scratch=scratchWSF.getDefaultScratchWorkspace();
String path=scratch.getPathName();
answered Aug 13, 2012 at 14:25
lang-java