浏览代码

linux 中的快捷方式照成死循环(node_modules)

不忘初心 5 年之前
父节点
当前提交
fe9bf4a183
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      hutool-core/src/main/java/cn/hutool/core/io/FileUtil.java

+ 1 - 1
hutool-core/src/main/java/cn/hutool/core/io/FileUtil.java

@@ -511,7 +511,7 @@ public class FileUtil extends PathUtil {
 	 * @return 总大小,bytes长度
 	 */
 	public static long size(File file) {
-		if (null == file || false == file.exists()) {
+		if (null == file || false == file.exists() || FileUtil.isSymlink(file)) {
 			return 0;
 		}