29
29
import java .net .URL ;
30
30
import java .net .MalformedURLException ;
31
31
import java .net .URISyntaxException ;
32
+ import java .nio .file .FileStore ;
32
33
import java .nio .file .FileSystems ;
33
34
import java .nio .file .Path ;
34
35
import java .security .SecureRandom ;
@@ -1798,10 +1799,13 @@ public static File[] listRoots() {
1798
1799
1799
1800
/**
1800
1801
* Returns the size of the partition <a href="#partName">named</a> by this
1801
- * abstract pathname.
1802
+ * abstract pathname. If the total number of bytes in the partition is
1803
+ * greater than {@link Long#MAX_VALUE}, then {@code Long.MAX_VALUE} will be
1804
+ * returned.
1802
1805
*
1803
1806
* @return The size, in bytes, of the partition or {@code 0L} if this
1804
- * abstract pathname does not name a partition
1807
+ * abstract pathname does not name a partition or if the size
1808
+ * cannot be obtained
1805
1809
*
1806
1810
* @throws SecurityException
1807
1811
* If a security manager has been installed and it denies
@@ -1810,6 +1814,7 @@ public static File[] listRoots() {
1810
1814
* read access to the file named by this abstract pathname
1811
1815
*
1812
1816
* @since 1.6
1817
+ * @see FileStore#getTotalSpace
1813
1818
*/
1814
1819
public long getTotalSpace () {
1815
1820
SecurityManager sm = System .getSecurityManager ();
@@ -1820,12 +1825,15 @@ public long getTotalSpace() {
1820
1825
if (isInvalid ()) {
1821
1826
return 0L ;
1822
1827
}
1823
- return fs .getSpace (this , FileSystem .SPACE_TOTAL );
1828
+ long space = fs .getSpace (this , FileSystem .SPACE_TOTAL );
1829
+ return space >= 0L ? space : Long .MAX_VALUE ;
1824
1830
}
1825
1831
1826
1832
/**
1827
1833
* Returns the number of unallocated bytes in the partition <a
1828
- * href="#partName">named</a> by this abstract path name.
1834
+ * href="#partName">named</a> by this abstract path name. If the
1835
+ * number of unallocated bytes in the partition is greater than
1836
+ * {@link Long#MAX_VALUE}, then {@code Long.MAX_VALUE} will be returned.
1829
1837
*
1830
1838
* <p> The returned number of unallocated bytes is a hint, but not
1831
1839
* a guarantee, that it is possible to use most or any of these
@@ -1837,9 +1845,10 @@ public long getTotalSpace() {
1837
1845
* will succeed.
1838
1846
*
1839
1847
* @return The number of unallocated bytes on the partition or {@code 0L}
1840
- * if the abstract pathname does not name a partition. This
1841
- * value will be less than or equal to the total file system size
1842
- * returned by {@link #getTotalSpace}.
1848
+ * if the abstract pathname does not name a partition or if this
1849
+ * number cannot be obtained. This value will be less than or
1850
+ * equal to the total file system size returned by
1851
+ * {@link #getTotalSpace}.
1843
1852
*
1844
1853
* @throws SecurityException
1845
1854
* If a security manager has been installed and it denies
@@ -1848,6 +1857,7 @@ public long getTotalSpace() {
1848
1857
* read access to the file named by this abstract pathname
1849
1858
*
1850
1859
* @since 1.6
1860
+ * @see FileStore#getUnallocatedSpace
1851
1861
*/
1852
1862
public long getFreeSpace () {
1853
1863
SecurityManager sm = System .getSecurityManager ();
@@ -1858,16 +1868,19 @@ public long getFreeSpace() {
1858
1868
if (isInvalid ()) {
1859
1869
return 0L ;
1860
1870
}
1861
- return fs .getSpace (this , FileSystem .SPACE_FREE );
1871
+ long space = fs .getSpace (this , FileSystem .SPACE_FREE );
1872
+ return space >= 0L ? space : Long .MAX_VALUE ;
1862
1873
}
1863
1874
1864
1875
/**
1865
1876
* Returns the number of bytes available to this virtual machine on the
1866
- * partition <a href="#partName">named</a> by this abstract pathname. When
1867
- * possible, this method checks for write permissions and other operating
1868
- * system restrictions and will therefore usually provide a more accurate
1869
- * estimate of how much new data can actually be written than {@link
1870
- * #getFreeSpace}.
1877
+ * partition <a href="#partName">named</a> by this abstract pathname. If
1878
+ * the number of available bytes in the partition is greater than
1879
+ * {@link Long#MAX_VALUE}, then {@code Long.MAX_VALUE} will be returned.
1880
+ * When possible, this method checks for write permissions and other
1881
+ * operating system restrictions and will therefore usually provide a more
1882
+ * accurate estimate of how much new data can actually be written than
1883
+ * {@link #getFreeSpace}.
1871
1884
*
1872
1885
* <p> The returned number of available bytes is a hint, but not a
1873
1886
* guarantee, that it is possible to use most or any of these bytes. The
@@ -1878,9 +1891,10 @@ public long getFreeSpace() {
1878
1891
* to this file system will succeed.
1879
1892
*
1880
1893
* @return The number of available bytes on the partition or {@code 0L}
1881
- * if the abstract pathname does not name a partition. On
1882
- * systems where this information is not available, this method
1883
- * will be equivalent to a call to {@link #getFreeSpace}.
1894
+ * if the abstract pathname does not name a partition or if this
1895
+ * number cannot be obtained. On systems where this information
1896
+ * is not available, this method will be equivalent to a call to
1897
+ * {@link #getFreeSpace}.
1884
1898
*
1885
1899
* @throws SecurityException
1886
1900
* If a security manager has been installed and it denies
@@ -1889,6 +1903,7 @@ public long getFreeSpace() {
1889
1903
* read access to the file named by this abstract pathname
1890
1904
*
1891
1905
* @since 1.6
1906
+ * @see FileStore#getUsableSpace
1892
1907
*/
1893
1908
public long getUsableSpace () {
1894
1909
SecurityManager sm = System .getSecurityManager ();
@@ -1899,7 +1914,8 @@ public long getUsableSpace() {
1899
1914
if (isInvalid ()) {
1900
1915
return 0L ;
1901
1916
}
1902
- return fs .getSpace (this , FileSystem .SPACE_USABLE );
1917
+ long space = fs .getSpace (this , FileSystem .SPACE_USABLE );
1918
+ return space >= 0L ? space : Long .MAX_VALUE ;
1903
1919
}
1904
1920
1905
1921
/* -- Temporary files -- */
0 commit comments