public PathInfo getPathInfo( String path ) throws NirvanixException,
SDKException, IOException, ParseException
{
APIParam[ ] parms = new
APIParam[ 5 ];
parms[ 0 ] = new APIParam( "sessionToken", accountLogin
.getSessionToken( ) );
parms[ 1 ] = new APIParam( "itemPath", path );
parms[ 2 ] = new APIParam( "showMetadata", "true" );
parms[ 3 ] = new APIParam( "showTags", "true" );
parms[ 4 ] = new APIParam( "showIsShared", "true" );
Element response;
response = Transport.executeCommand(
NirvanixAPICommands.GET_PATH_INFO,
parms );