mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
20 lines
No EOL
347 B
C++
20 lines
No EOL
347 B
C++
#pragma once
|
|
|
|
/**
|
|
* @file file.h
|
|
* @brief File manipulation utilities
|
|
*/
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
namespace satdump
|
|
{
|
|
/**
|
|
* @brief Gets the filesize in bytes
|
|
*
|
|
* @param filepath path of the file to check
|
|
* @return size in bytes
|
|
*/
|
|
uint64_t getFilesize(std::string filepath);
|
|
} // namespace satdump
|