0

需要在我的这段代码中进行什么更改,以便将我的文件保存在驱动器上并获取保存的 url 以在谷歌驱动器中查看该文件

private void saveFile(MultipartFile multipartFile, int id) throws Exception {
    String destination = "/images/" + id + "/"  + multipartFile.getOriginalFilename();
    File file = new File(destination);
    multipartFile.transferTo(file);
}

以及如何限制其他用户访问该文件链接

4

0 回答 0