Skip to content

Commit

Permalink
[util] GetFileSize
Browse files Browse the repository at this point in the history
  • Loading branch information
Sjors committed Mar 24, 2020
1 parent 6ab3aad commit 86e22d2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/util/system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,12 @@ bool CheckDiskSpace(const fs::path& dir, uint64_t additional_bytes)
return free_bytes_available >= min_disk_space + additional_bytes;
}

std::streampos GetFileSize(const char* path, std::streamsize max) {
std::ifstream file(path, std::ios::binary);
file.ignore(max);
return file.gcount();
}

/**
* Interpret a string argument as a boolean.
*
Expand Down
8 changes: 8 additions & 0 deletions src/util/system.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,14 @@ void UnlockDirectory(const fs::path& directory, const std::string& lockfile_name
bool DirIsWritable(const fs::path& directory);
bool CheckDiskSpace(const fs::path& dir, uint64_t additional_bytes = 0);

/** Get the size of a file by scanning it.
*
* @param[in] path The file path
* @param[in] max Stop seeking beyond this limit
* @return The file size or max
*/
std::streampos GetFileSize(const char* path, std::streamsize max = std::numeric_limits<std::streamsize>::max());

/** Release all directory locks. This is used for unit testing only, at runtime
* the global destructor will take care of the locks.
*/
Expand Down

0 comments on commit 86e22d2

Please sign in to comment.