Click here to Skip to main content
15,886,026 members
Articles / Desktop Programming / MFC
Article

CSplitPath

Rate me:
Please Sign up or sign in to vote.
4.55/5 (10 votes)
16 Feb 2000 90.4K   46   11
A class that will split a complete path into its components.

Many times I have had the need to split a path into its components (who hasn't?). And every time I needed to do this I would use the venerable _splitpath() command. I often wondered why there isn't a class wrapper for this function. So here it is, CSplitPath. It's pretty much self-explanatory: Create an instance of the class with the path to split in the constructor. Then use the member functions to get the pieces you want.

It's that simple. Enjoy!


// Example usage
CSplitPath sp( "C:\\Temp\\Foo.txt" );
cout << "Drive: " << sp.GetDrive()
cout << "Directory: " << sp.GetDirectory();
cout << "File Name: " << sp.GetFileName();
cout << "Extension: " << sp.GetExtension();

The source code is very small and is as follows:

//////////////////////////////////////////////////////////////////////
// SplitPath.h : interface for the CSplitPath class.                //
// (c) 1999, Kevin Lussier                                          //
//////////////////////////////////////////////////////////////////////

#ifndef __SPLITPATH_H__
#define __SPLITPATH_H__

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

class CSplitPath
{ 
// Construction
public: 
    CSplitPath( LPCTSTR lpszPath = NULL );

// Operations
    BOOL    Split(LPCTSTR lpszPath );
    CString GetPath( void ) { return path_buffer; }
    CString GetDrive( void ) { return drive; }
    CString GetDirectory( void ) { return dir; }
    CString GetFileName( void ) { return fname; }
    CString GetExtension( void ) { return ext; }

// Attributes
protected:
    TCHAR path_buffer[_MAX_PATH];
    TCHAR drive[_MAX_DRIVE];
    TCHAR dir[_MAX_DIR];
    TCHAR fname[_MAX_FNAME];
    TCHAR ext[_MAX_EXT];
}; 

#endif  // __SPLITPATH_H__

//////////////////////////////////////////////////////////////////////
// SplitPath.cpp : implementation of the CSplitPath class.          //
// (c) 1999, Kevin Lussier                                          //
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "SplitPath.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

CSplitPath::CSplitPath( LPCTSTR lpszPath )
{
    // Initialize our objects
    memset( path_buffer, 0, sizeof( path_buffer ) );
    memset( drive, 0, sizeof( drive ) );
    memset( dir, 0, sizeof( dir ) );
    memset( fname, 0, sizeof( fname ) );
    memset( ext, 0, sizeof( ext ) );

    // If we were given a path, split it
    if ( lpszPath ) {
        Split( lpszPath );
    }
}

BOOL CSplitPath::Split( LPCTSTR lpszPath )
{
    // If we weren't given a path, fail
    if ( lpszPath == NULL ) {
        // Return failure
        return FALSE;
    }

    // Copy the path
    _tcsncpy( path_buffer, lpszPath, sizeof( path_buffer ) - 1 );
    // Split the given path
    _tsplitpath( path_buffer, drive, dir, fname, ext );

    return TRUE;
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionCSplitPath snippets - license Pin
Member 1202031212-Mar-19 0:03
Member 1202031212-Mar-19 0:03 
QuestionWhat about relative paths? Pin
soundman3219-Dec-04 22:20
soundman3219-Dec-04 22:20 
QuestionWhy is Split(LPCTSTR lpszPath) a public member? Pin
Kevin Cotter10-Jul-03 3:48
Kevin Cotter10-Jul-03 3:48 
AnswerRe: Why is Split(LPCTSTR lpszPath) a public member? Pin
David Pritchard28-Sep-07 4:56
David Pritchard28-Sep-07 4:56 
Generalpotential problem Pin
Anonymous5-Jun-03 12:34
Anonymous5-Jun-03 12:34 
QuestionEasier ? Pin
Kochise19-Sep-02 23:23
Kochise19-Sep-02 23:23 
GeneralSweet! Pin
calebcohoon14-Mar-02 3:01
calebcohoon14-Mar-02 3:01 
GeneralEnhancement to cope with UNC path Pin
Geert Delmeiren18-Feb-00 2:52
Geert Delmeiren18-Feb-00 2:52 
GeneralRe: Enhancement to cope with UNC path Pin
Gennady Oster21-Jun-01 1:42
Gennady Oster21-Jun-01 1:42 
GeneralGood point Pin
15-Jul-01 20:46
suss15-Jul-01 20:46 
GeneralVery Useful ! Pin
Steven J. Ackerman17-Feb-00 7:03
Steven J. Ackerman17-Feb-00 7:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.