MCPcopy Create free account
hub / github.com/FongMi/TV / copy

Method copy

catvod/src/main/java/com/github/catvod/utils/Path.java:203–208  ·  view source on GitHub ↗
(File in, File out)

Source from the content-addressed store, hash-verified

201 }
202
203 public static void copy(File in, File out) {
204 try {
205 copy(new FileInputStream(in), out);
206 } catch (IOException ignored) {
207 }
208 }
209
210 public static void copy(InputStream in, File out) {
211 try (InputStream input = in; FileOutputStream output = new FileOutputStream(create(out))) {

Callers 8

zipDecompressMethod · 0.95
createFileFromUriMethod · 0.95
checkUrlMethod · 0.95
uploadMethod · 0.95
GetTaskIdMethod · 0.95
checkLibraryMethod · 0.95
moveMethod · 0.95
CiFunction · 0.45

Calls 3

createMethod · 0.95
readMethod · 0.45
writeMethod · 0.45

Tested by

no test coverage detected