return bytes;
}
@Override
protected boolean write(String path, boolean append,boolean isBase64, InputStream is) throws SystemCallNotSupported,ResourceAccessFailed {
if(isRemote(path)|| (! isBase64)) throw new SystemCallNotSupported();
path = getPhysicalPath(path);
boolean result =false;
FileOutputStream fos = null;
try{
fos = new FileOutputStream(path,append);