|
@@ -379,7 +379,7 @@ public class OssUtil {
|
|
|
public List<String> listFiles(String prefix, String pathKey) {
|
|
|
return FileUtil.loopFiles(
|
|
|
FdkkLaserConfig.getProfile(prefix) + File.separator + pathKey).stream().map(file->{
|
|
|
- return file.getAbsolutePath().replace(FdkkLaserConfig.getProfile(prefix) , "");
|
|
|
+ return file.getAbsolutePath().replace(FdkkLaserConfig.getProfile(prefix) + File.separator, "");
|
|
|
}).collect(Collectors.toList());
|
|
|
}
|
|
|
|