RuoYi
2019-11-01 85c17f4563d37cd94c4f5b6b7b4e39e33bd78368
修复文件上传多级目录识别问题
已修改1个文件
2 ■■■ 文件已修改
ruoyi/src/main/java/com/ruoyi/common/utils/file/FileUploadUtils.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi/src/main/java/com/ruoyi/common/utils/file/FileUploadUtils.java
@@ -146,7 +146,7 @@
    private static final String getPathFileName(String uploadDir, String fileName) throws IOException
    {
        int dirLastIndex = uploadDir.lastIndexOf("/") + 1;
        int dirLastIndex = RuoYiConfig.getProfile().length() + 1;
        String currentDir = StringUtils.substring(uploadDir, dirLastIndex);
        String pathFileName = Constants.RESOURCE_PREFIX + "/" + currentDir + "/" + fileName;
        return pathFileName;