satdump/src-core/utils/file.h

20 lines
347 B
C
Raw Permalink Normal View History

#pragma once
2025-07-23 12:21:02 +02:00
/**
* @file file.h
* @brief File manipulation utilities
*/
#include <cstdint>
#include <string>
namespace satdump
{
2025-07-23 12:21:02 +02:00
/**
* @brief Gets the filesize in bytes
*
* @param filepath path of the file to check
* @return size in bytes
*/
uint64_t getFilesize(std::string filepath);
2025-07-23 12:21:02 +02:00
} // namespace satdump