|
@@ -109,4 +109,11 @@ public class DiskStore implements FileStore {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public void copy(String source, String target) throws Exception {
|
|
|
+ source = formatPath(source);
|
|
|
+ target = formatPath(target);
|
|
|
+ IOUtils.copy(new File(rootDir, source), new File(rootDir, target));
|
|
|
+ }
|
|
|
+
|
|
|
}
|