|
|
|
@ -1,5 +1,7 @@
|
|
|
|
|
package com.glxp.api.util;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
|
|
|
|
|
import java.io.BufferedReader;
|
|
|
|
|
import java.io.ByteArrayOutputStream;
|
|
|
|
|
import java.io.File;
|
|
|
|
@ -529,6 +531,16 @@ public class FileUtils {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static String getLastFileName(String fileName) {
|
|
|
|
|
String fileNameNow = fileName.substring(fileName.lastIndexOf("/") + 1);
|
|
|
|
|
if (StrUtil.isEmpty(fileNameNow))
|
|
|
|
|
return fileName;
|
|
|
|
|
else
|
|
|
|
|
return fileNameNow;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 得到相对路径。
|
|
|
|
|
* 文件名不是目录名的子节点时返回文件名。
|
|
|
|
@ -538,6 +550,7 @@ public class FileUtils {
|
|
|
|
|
* @return 得到文件名相对于目录名的相对路径,目录下不存在该文件时返回文件名
|
|
|
|
|
* @since 1.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
public static String getSubpath(String pathName, String fileName) {
|
|
|
|
|
int index = fileName.indexOf(pathName);
|
|
|
|
|
if (index != -1) {
|
|
|
|
|