mirror of
https://git.mirrors.martin98.com/https://github.com/gulrak/filesystem
synced 2025-06-04 11:13:58 +08:00

Squashed commit of the following: commit f4a85d2070bb62bdca644f81faa953ba5fb5e491 Author: Steffen Schümann <s.schuemann@pobox.com> Date: Sun May 19 10:02:22 2019 +0200 refs #17, refs #18, Missing use of alloc in fromUtf8 (fixed on master) and initialization order issue. commit aa1cb7081630393659204641792bc7641f0c72aa Author: Steffen Schümann <s.schuemann@pobox.com> Date: Sun May 19 09:46:02 2019 +0200 refs #18, fighting VS2015 sfinae issues commit 15788d8eb9972965ec4562c6e672a8a460e5b655 Author: Steffen Schümann <s.schuemann@pobox.com> Date: Sat May 18 10:35:25 2019 +0200 refs #17, work on wchar_t/wstring support on Windows.
62 lines
1.6 KiB
C++
62 lines
1.6 KiB
C++
#include <iostream>
|
|
#include <iomanip>
|
|
#include <chrono>
|
|
|
|
#if defined(__cplusplus) && __cplusplus >= 201703L && defined(__has_include)
|
|
#if __has_include(<filesystem>)
|
|
#define GHC_USE_STD_FS
|
|
#include <filesystem>
|
|
namespace fs = std::filesystem;
|
|
#endif
|
|
#endif
|
|
#ifndef GHC_USE_STD_FS
|
|
#include <ghc/filesystem.hpp>
|
|
namespace fs = ghc::filesystem;
|
|
#endif
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
#ifdef GHC_FILESYSTEM_VERSION
|
|
fs::u8arguments u8guard(argc, argv);
|
|
if(!u8guard.valid()) {
|
|
std::cerr << "Invalid character encoding, UTF-8 based encoding needed." << std::endl;
|
|
std::exit(EXIT_FAILURE);
|
|
}
|
|
#endif
|
|
if(argc > 2) {
|
|
std::cerr << "USAGE: du <path>" << std::endl;
|
|
exit(1);
|
|
}
|
|
fs::path dir{"."};
|
|
if(argc == 2) {
|
|
dir = fs::u8path(argv[1]);
|
|
}
|
|
|
|
uint64_t totalSize = 0;
|
|
int totalDirs = 0;
|
|
int totalFiles = 0;
|
|
int maxDepth = 0;
|
|
|
|
try {
|
|
auto rdi = fs::recursive_directory_iterator(dir);
|
|
for(auto de : rdi) {
|
|
if(rdi.depth() > maxDepth) {
|
|
maxDepth = rdi.depth();
|
|
}
|
|
if(de.is_regular_file()) {
|
|
totalSize += de.file_size();
|
|
++totalFiles;
|
|
}
|
|
else if(de.is_directory()) {
|
|
++totalDirs;
|
|
}
|
|
}
|
|
}
|
|
catch(fs::filesystem_error fe) {
|
|
std::cerr << "Error: " << fe.what() << std::endl;
|
|
exit(1);
|
|
}
|
|
std::cout << totalSize << " bytes in " << totalFiles << " files and " << totalDirs << " directories, maximum depth: " << maxDepth << std::endl;
|
|
return 0;
|
|
}
|