Searched refs:sizeOfDirectoryAsBigInteger (Results 1 – 5 of 5) sorted by relevance
1543 …return Files.isDirectory(path) ? sizeOfDirectoryAsBigInteger(path) : BigInteger.valueOf(Files.size…1573 public static BigInteger sizeOfDirectoryAsBigInteger(final Path directory) throws IOException {
2525 assertThrows(NullPointerException.class, () -> FileUtils.sizeOfDirectoryAsBigInteger(null));2527 … assertThrows(IllegalArgumentException.class, () -> FileUtils.sizeOfDirectoryAsBigInteger(file));2533 … assertThrows(IllegalArgumentException.class, () -> FileUtils.sizeOfDirectoryAsBigInteger(file));2541 …assertEquals(TEST_DIRECTORY_SIZE_BI, FileUtils.sizeOfDirectoryAsBigInteger(file), "Unexpected dire…2556 …assertEquals(TEST_DIRECTORY_SIZE_GT_ZERO_BI, FileUtils.sizeOfDirectoryAsBigInteger(file), "Unexpec…
2955 public static BigInteger sizeOfDirectoryAsBigInteger(final File directory) { in sizeOfDirectoryAsBigInteger() method in FileUtils2957 return Uncheck.get(() -> PathUtils.sizeOfDirectoryAsBigInteger(directory.toPath())); in sizeOfDirectoryAsBigInteger()
540 o IO-390: FileUtils.sizeOfDirectoryAsBigInteger can overflow.
570 o IO-390: FileUtils.sizeOfDirectoryAsBigInteger can overflow.