| | |
| | | |
| | | import cn.hutool.core.util.StrUtil; |
| | | import com.alibaba.fastjson2.JSONObject; |
| | | import com.yami.trading.common.constants.Constants; |
| | | import com.yami.trading.common.exception.BusinessException; |
| | | import com.yami.trading.common.exception.YamiShopBindException; |
| | | import com.yami.trading.service.AwsS3OSSFileService; |
| | |
| | | String path = filename; // 直接使用文件名作为路径 |
| | | |
| | | // 确保目标文件夹存在 |
| | | File targetDir = new File(imgDir); |
| | | File targetDir = new File(Constants.IMAGES_DIR); |
| | | if (!targetDir.exists()) { |
| | | targetDir.mkdirs(); |
| | | // 设置目录权限为755 (rwxr-xr-x) |