C++
  Home arrow C++ arrow Page 2 - Paths and Files
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
C++

Paths and Files
By: O'Reilly Media
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 2
    2008-11-13

    Table of Contents:
  • Paths and Files
  • 10.15 Extracting a Path from a Full Path and Filename
  • 10.16 Replacing a File Extension
  • 10.17 Combining Two Paths into a Single Path

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Paths and Files - 10.15 Extracting a Path from a Full Path and Filename


    (Page 2 of 4 )

    Problem

    You have the full path of a filename, e.g., d:\apps\src\foo.c, and you need to get the pathname, d:\apps\src.

    Solution

    Use the same technique as the previous two recipes by invoking rfind and substr to find and get what you want from the full pathname. See Example 10-23 for a short sample program.

    Example 10-23. Get the path from a full path and filename

    #include <iostream>
    #include <string>

    using std::string;

    string getPathName(const string& s) {

       char sep = '/';

    #ifdef _WIN32
       sep = '\';
    #endif

       size_t i = s.rfind(sep, s.length());
       if (i != string::npos) {
          return(s.substr(0, i));
       }

       return("");
    }

    int main(int argc, char** argv) {

       string path = argv[1];

       std::cout << "The path name is "" << getPathName(path) << ""\n";
    }

    Discussion

    Example 10-23 is trivial, especially if you've already looked at the previous few recipes, so there is no more to explain. However, as with many of the other recipes, the Boost Filesystem library provides a way to extract everything but the last part of the filename with its branch_path function. Example 10-24 shows how to use it.

    Example 10-24. Getting the base path

    #include <iostream>
    #include <cstdlib>
    #include <boost/filesystem/operations.hpp>

    using namespace std;
    using namespace boost::filesystem;

    int main(int argc, char** argv) {

       // Parameter checking...

       try {
          path p = complete(path(argv[1], native));
          cout << p.branch_path().string() << endl;
       }
       catch (exception& e) {
          cerr << e.what() << endl;
       }
      return(EXIT_SUCCESS);
    }

    Sample output from Example 10-24 looks like this:

      D:\src\ccb\c10>bin\GetPathBoost.exe c:\windows\system32\1033
      c:/windows/system32

    See Also

    Recipes 10.13 and 10.14

    More C++ Articles
    More By O'Reilly Media


       · This article is an excerpt from the book "C++ Cookbook," published by O'Reilly. We...
     

    Buy this book now. This article is excerpted from chapter 10 of the C++ Cookbook, written by Ryan Stephens, Christopher Diggins, Jonathan Turkanis and Jeff Cogswell (O'Reilly; ISBN: 0596007612). Check it out today at your favorite bookstore. Buy this book now.

    C++ ARTICLES

    - More Tricks to Gain Speed in Programming Con...
    - Easy and Efficient Programming for Contests
    - Preparing For Programming Contests
    - Programming Contests: Why Bother?
    - Polymorphism in C++
    - Overview of Virtual Functions
    - Inheritance in C++
    - Extending the Basic Streams in C++
    - Using Stringstreams in C++
    - Custom Stream Manipulation in C++
    - General Stream Manipulation in C++
    - Serialize Your Class into Streams in C++
    - Advanced File Handling with Streams in C++
    - File Handling and Streams in C++
    - The STL String Class







    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
    Stay green...Green IT