Method: S3FileCollection#current_disk_usage

Defined in:
lib/cosmos/utilities/s3_file_cache.rb

#current_disk_usageObject



131
132
133
134
135
136
137
138
139
# File 'lib/cosmos/utilities/s3_file_cache.rb', line 131

def current_disk_usage
  @mutex.synchronize do
    total_size = 0
    @array.each do |file|
      total_size += file.size if file.local_path
    end
    return total_size
  end
end