Click here to Skip to main content
Licence CPOL
First Posted 9 Sep 2005
Views 28,838
Downloads 713
Bookmarked 23 times

File Rename Using Boost Regex and Boost File System

By | 9 Sep 2005 | Article
File rename using boost regex and boost file system
Sample Image - File_rename_using_regex.jpg

Introduction

As a professional programmer, you often have to rename lots of files. While in potential the 'move' command from cmd could do the same, it often ends up in a mess.

Therefore I wrote a simple tool using the Boost libraries regex and filesystem, in which a user supplied directory is scanned and files are renamed by using regex_replace. Note that regex syntax is powerful and complex and therefore I added the possibility to test first the supplied format string.

Simple Use

For a complete overview of boost::regex_replace, please refer to http://www.boost.org/. A simple use was e.g. that a MP3 compressor created '01) Bla.mp3' from my CD's, while I preferred to store them like 'Artist - Bla.mp3'. Feeding '\d{2}\)' as regular expression (without quotes) will instruct the regex engine to search for two numbers followed by a ')'. This match can be replaced by the artists' name.

Code

The code is a simple MFC dialog with two extra classes:

  • KFrnDirectoryScanner - Thin wrapper around boost::filesystem
  • KFrnMoveFile - Function object which does the actual renaming

The only caveat is that you better first take a snapshot of the content of the directory, before you end up in recursively calling a just renamed file.

Build

The code is built with Visual Studio 2003. Of course, it is absolutely necessary that you have Boost (version 1.33) and also the DLLs of the above mentioned libraries (see documentation of Boost or my other article 'Building boost libraries for Visual Studio').

Room for Improvement

Probably it would be nice to also have:

  • a browse button
  • combobox which keeps its history

History

  • 9th September, 2005: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Gast128

Software Developer (Senior)

Netherlands Netherlands

Member

Born in the Netherlands in 1971. Spent since 1998 years as a software engineer programming Windows application(s) using, UML, C++, MFC, STL, DirectShow and Boost.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralLinks PinmemberYoSilver10:02 10 Sep '05  
GeneralRe: Links PinmemberGast12811:17 10 Sep '05  
GeneralRe: Links 2 PinmemberGast1280:25 11 Sep '05  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 9 Sep 2005
Article Copyright 2005 by Gast128
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid