SizeInBytes() public method

Return total size in bytes of all files in this directory. This is currently quantized to RAMOutputStream.BUFFER_SIZE.
public SizeInBytes ( ) : long
return long
Esempio n. 1
0
 /// <summary>
 /// Returns how many bytes are being used by the
 ///  RAMDirectory cache
 /// </summary>
 public virtual long SizeInBytes()
 {
     return(Cache.SizeInBytes());
 }