674675676677678679680681682683684
boolean outflag = false; if(outfile.startsWith("nfs://")) { outflag = true; out = new BufferedOutputStream(new XFileOutputStream(outfile)); } else { out = new BufferedOutputStream(new FileOutputStream(outfile)); }
853854855856857858859860861862863
try { file = toNFS(file); out = new BufferedOutputStream(new XFileOutputStream(file)); in = new BufferedInputStream(i); byte[] buf = new byte[buffer]; int len = 0; int reallen = 0;