Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

tableau/teenypath

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TeenyPath

As-Is Build Status

TeenyPath is a small (single file) cross-platform (Windows, Apple, Linux) filesystem abstraction for C++.

Why TeenyPath?

TeenyPath lets you avoid using a gigantic library (Boost, Qt, the not-fully-done filesystem.h in future C++ standards) to write cross-platform code which has to touch the filesystem.

Demo/Samples

  using namespace TeenyPath;

  const path cwd = current_path();
  assert(cwd.is_directory());
  assert(!cwd.is_symlink());
  assert(!cwd.is_regular_file());

Get started

This section describes how to compile and link against TeenyPath.

Prerequistes

To work with TeenyPath, you need the following:

  • A C++ compiler (clang, gcc, msvc).
  • A C++ linker (lld, ld, link.exe).
  • CMake.

Compilation

cmake -H. -B./build
cmake --build build

Link against

Add -I/path/to/teenypath.h to your compilation command, and add -L/path/to/libteenypath.so to your command line options for linking.

Support

TeenyPath is made available AS-IS with no support. Any bugs that you discover should be filed in the TeenyPath issue tracker.

Contributions

Code contributions and improvements by the community are welcomed! See the LICENSE file for current open-source licensing and use information.

Before we can accept pull requests from contributors, we require a signed Contributor License Agreement (CLA),

Releases

No releases published

Packages

No packages published