Git Product home page Git Product logo

c-ospath's Introduction

c-ospath

Python os.path module in C

  • os.path.splitext
  • os.path.dirname
  • os.path.basename
  • os.path.split
  • os.path.join

Sample Code

int main(void)
{
    char path[] = "abc/def/hoge.txt";
    char base[128];
    char ext[128];
    char dir[128];
    char fname[128];

    printf("input path : %s\n", path);                  // input path : abc/def/hoge.txt

    os_path_splitext(path, base, ext);
    printf("os_path_splitext base     : %s\n", base);   // os_path_splitext base     : abc/def/hoge
    printf("os_path_splitext ext      : %s\n", ext);    // os_path_splitext ext      : .txt

    os_path_dirname(path, dir);
    printf("os_path_dirname  dir      : %s\n", dir);    // os_path_dirname  dir      : abc/def

    os_path_basename(path, fname);
    printf("os_path_basename fname    : %s\n", fname);  // os_path_basename fname    : hoge.txt

    os_path_split(path, dir, fname);
    printf("os_path_split    dir      : %s\n", dir);    // os_path_split    dir      : abc/def
    printf("os_path_split    fname    : %s\n", fname);  // os_path_split    fname    : hoge.txt

    os_path_join("abc/def", "hoge.txt", base);
    printf("os_path_join     path     : %s\n", base);   // os_path_join     path     : abc/def/hoge.txt

    os_path_join("abc/def/", "hoge.txt", base);
    printf("os_path_join     path     : %s\n", base);   // os_path_join     path     : abc/def/hoge.txt

    return 0;
}

c-ospath's People

Contributors

takurooo avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.