public string GetCurrentFileVersionFast(IOConnectionInfo ioc) { try { return(Jfs.GetCurrentFileVersionFast(IocToPath(ioc))); } catch (Java.Lang.Exception e) { throw LogAndConvertJavaException(e); } }
public Stream OpenFileForRead(IOConnectionInfo ioc) { try { return(Jfs.OpenFileForRead(IocToPath(ioc))); } catch (FileNotFoundException e) { throw new System.IO.FileNotFoundException(e.Message, e); } catch (Java.Lang.Exception e) { throw LogAndConvertJavaException(e); } }
public void Delete(IOConnectionInfo ioc) { try { Jfs.Delete(IocToPath(ioc)); } catch (FileNotFoundException e) { throw new System.IO.FileNotFoundException(e.Message, e); } catch (Java.Lang.Exception e) { throw LogAndConvertJavaException(e); } }