std::filesystem::file_size (3) - Linux Manuals
std::filesystem::file_size: std::filesystem::file_size
Command to display std::filesystem::file_size
manual in Linux: $ man 3 std::filesystem::file_size
NAME
std::filesystem::file_size - std::filesystem::file_size
Synopsis
Defined in header <filesystem>
std::uintmax_t file_size( const std::filesystem::path& p );
std::uintmax_t file_size( const std::filesystem::path& p, (1) (since C++17)
std::error_code& ec ) noexcept;
If p does not exist, reports an error.
For a regular file p, returns the size determined as if by reading the st_size member of the structure obtained by POSIX stat (symlinks are followed)
The result of attempting to determine the size of a directory (as well as any other file that is not a regular file or a symlink) is implementation-defined.
The non-throwing overload returns -1 on errors.
Parameters
p - path to examine
ec - out-parameter for error reporting in the non-throwing overload
Return value
The size of the file, in bytes.
Exceptions
The overload that does not take a std::error_code& parameter throws 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.
Example
// Run this code
#include <iostream>
#include <fstream>
#include <filesystem>
namespace fs = std::filesystem;
int main()
{
fs::path p = fs::current_path() / "example.bin";
std::ofstream(p).put('a'); // create file of size 1
std::cout << "File size = " << fs::file_size(p) << '\n';
fs::remove(p);
try {
fs::file_size("/dev"); // attempt to get size of a directory
} catch(fs::filesystem_error& e) {
std::cout << e.what() << '\n';
}
}
Possible output:
File size = 1
filesystem error: cannot get file size: Is a directory [/dev]
See also
resize_file changes the size of a regular file by truncation or zero-fill
(function)
(C++17)
space determines available free space on the file system
(function)
(C++17)
returns the size of the file to which the directory entry refers
file_size (public member function of std::filesystem::directory_entry)
Pages related to std::filesystem::file_size
- std::filesystem::file_status (3) - std::filesystem::file_status
- std::filesystem::file_status::file_status (3) - std::filesystem::file_status::file_status
- std::filesystem::file_status::operator= (3) - std::filesystem::file_status::operator=
- std::filesystem::file_status::permissions (3) - std::filesystem::file_status::permissions
- std::filesystem::file_status::type (3) - std::filesystem::file_status::type
- std::filesystem::file_time_type (3) - std::filesystem::file_time_type
- std::filesystem::file_type (3) - std::filesystem::file_type
- std::filesystem::filesystem_error (3) - std::filesystem::filesystem_error
- std::filesystem::filesystem_error::filesystem_error (3) - std::filesystem::filesystem_error::filesystem_error
- std::filesystem::filesystem_error::path1,std::filesystem::filesystem_error::path2 (3) - std::filesystem::filesystem_error::path1,std::filesystem::filesystem_error::path2
- std::filesystem::filesystem_error::what (3) - std::filesystem::filesystem_error::what
- std::filesystem::absolute (3) - std::filesystem::absolute
- std::filesystem::begin(directory_iterator),std::filesystem::end(directory_iterator) (3) - std::filesystem::begin(directory_iterator),std::filesystem::end(directory_iterator)
- std::filesystem::begin(recursive_directory_iterator), (3) - std::filesystem::begin(recursive_directory_iterator),
- std::filesystem::begin(recursive_directory_iterator),std::filesystem::end(recursive_directory_iterator) (3) - std::filesystem::begin(recursive_directory_iterator),std::filesystem::end(recursive_directory_iterator)
- std::filesystem::canonical,std::filesystem::weakly_canonical (3) - std::filesystem::canonical,std::filesystem::weakly_canonical
- std::filesystem::copy (3) - std::filesystem::copy
- std::filesystem::copy_file (3) - std::filesystem::copy_file
- std::filesystem::copy_options (3) - std::filesystem::copy_options
- std::filesystem::copy_symlink (3) - std::filesystem::copy_symlink
- std::filesystem::create_directory,std::filesystem::create_directories (3) - std::filesystem::create_directory,std::filesystem::create_directories