libqaeda

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs | README | LICENSE

index.md (1160B)


      1 ---
      2 title: C/C++ Path Library - Cross-Platform
      3 description: cwalk is a lightweight C/C++ Path Library which focuses on file path manipulations. Using cwalk you can easily do things like combine paths, resolve relative paths, create relative paths based on absolute paths, canonicalize paths or read extension information from paths.
      4 ---
      5 
      6 ## What is cwalk? 
      7 **cwalk** is a lightweight C/C++ library which focuses on file path manipulations. Using **cwalk** you can easily do things like combine paths, resolve relative paths, create relative paths based on absolute paths, canonicalize paths or read extension information from paths.
      8 
      9 ## Example
     10 Here is a simple example of one thing (normalization) cwalk can do for you. However, there are more features available.
     11 ```c
     12 #include <cwalk.h>
     13 #include <stdio.h>
     14 #include <stdlib.h>
     15 
     16 int main(int argc, char *argv[])
     17 {
     18   char result[FILENAME_MAX];
     19 
     20   // The following function cleans up the input path and writes it
     21   // to the result buffer.
     22   cwk_path_normalize( "/var/log/weird/////path/.././..///", result,
     23     sizeof(result));
     24   
     25   printf("%s\n", result);
     26   return EXIT_SUCCESS;
     27 }
     28 ```
     29 
     30 Output:
     31 ```
     32 /var/log
     33 ```