}
private FileRef addFileToSourceFs(String path, String content)
throws IOException {
FileRef fileRef = sourcePathFs.parseFilename(path);
OutputStream out = fileRef.openOutputStream();
try {
Writer outW = new OutputStreamWriter(out, "UTF-8");
outW.write(content);
outW.flush();
} finally {