FileCopy.java 348 B

12345678910111213141516171819
  1. package J20250725;
  2. import java.io.IOException;
  3. /**
  4. * @author WanJl
  5. * @version 1.0
  6. * @title FileCopy
  7. * @description
  8. * @create 2025/7/25
  9. */
  10. public interface FileCopy {
  11. /**
  12. * 文件复制-plus版本
  13. * @param src 开始位置
  14. * @param desc 目标位置
  15. */
  16. void copy(String src, String desc) throws IOException;
  17. }