GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::filesystem::directory_entry::file_size(3) C++ Standard Libary std::filesystem::directory_entry::file_size(3)

std::filesystem::directory_entry::file_size - std::filesystem::directory_entry::file_size


std::uintmax_t file_size() const; (since C++17)
std::uintmax_t file_size( std::error_code& ec ) const noexcept;


If the file size is cached in this directory_entry, returns the cached value.
Otherwise, returns std::filesystem::file_size(path()) or
std::filesystem::file_size(path(), ec), respectively.


ec - out-parameter for error reporting in the non-throwing overload


The size of the referred-to filesystem object.


The overload that does not take a std::error_code& parameter throws
filesystem::filesystem_error on underlying OS API errors, constructed with p as the
first path argument and the OS error code as the error code argument. The overload
taking a std::error_code& parameter sets it to the OS API error code if an OS API
call fails, and executes ec.clear() if no errors occur. Any overload not marked
noexcept may throw std::bad_alloc if memory allocation fails.


Prints the list of files in a given directory alongside with their sizes in human
readable form.

// Run this code


#include <filesystem>
#include <iostream>
#include <cstdint>
#include <cmath>


struct HumanReadable {
std::uintmax_t size {};


template <typename Os> friend Os& operator<< (Os& os, HumanReadable hr)
{
int i{};
double mantissa = hr.size;
for (; mantissa >= 1024.; ++i) {
mantissa /= 1024.;
}
mantissa = std::ceil(mantissa * 10.) / 10.;
os << mantissa << "BKMGTPE"[i];
return i == 0 ? os : os << "B (" << hr.size << ')';
}
};


int main(int argc, const char* argv[])
{
const auto dir = argc == 2 ? std::filesystem::path{ argv[1] }
: std::filesystem::current_path();


for (std::filesystem::directory_entry const& entry :
std::filesystem::directory_iterator(dir)) {
if (entry.is_regular_file()) {
std::cout << entry.path().filename() << " size: "
<< HumanReadable{entry.file_size()} << '\n';
}
}
}


"boost_1_73_0.tar.bz2" size: 104.2MB (109247910)
"CppCon 2018 - Jon Kalb “Copy Elision”.mp4" size: 15.7MB (16411990)
"cppreference-doc-20190607.tar.xz" size: 6.3MB (6531336)
"hana.hpp" size: 6.7KB (6807)


file_size returns the size of a file
(C++17) (function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.