The Boost.Filesystem library provides facilities to manipulate files and directories, and the paths that identify them.

learn more… | top users | synonyms

0
votes
0answers
22 views

How to check if boost::filesystem::path (of wchar_t) is having valid file path in windows?

My code contains boost::filesystem::path variable which will accept unicode characters(std::wstring input to path). I want to check whether filesystem::path is valid Windows path or not. I can see lot ...
2
votes
1answer
31 views

Using boost range adaptors with a directory iterator range

Edit: I added some solutions below my question, based on Jonathan's answer I want to have a list of regular files with a certain name pattern in a given directory. I took one of the examples from ...
0
votes
0answers
10 views

BoostC++ and Objective-C++ result in EXC_BAD_ACCES

I have a utility class which is opening, reading, writing, and closing files with the help of the boost files system. Now I want to reuse it in an Objective-C application. Everything builds fine ...
0
votes
1answer
60 views

How to deploy boost library?

I have used Boost library (particularly, Boost filesystem) for my project in Visual Studio C++ (9.0 version). This Boost library is installed in C drive. My project is already finished, therefore, I ...
2
votes
0answers
31 views

boost::filesystem::recursive_directory_iterator: Wrong case

I use this code as c++ directory walker in order to obtain all files contents in a directory: boost::filesystem::path current_dir(DAT_PATH); for (boost::filesystem::recursive_directory_iterator ...
2
votes
2answers
84 views

How to convert a boost::filesystem::directory_iterator to a const char *

I want to iterate over all the files in a directory and print their contents. Boost handles the iteration part very nicely but I have no idea how to conver that into a const char *. ...
1
vote
1answer
71 views

Traversing a directory with boost::filesystem without throwing exceptions

I have a path to the directory, and I want to traverse through all of its sub-directories, collecting files' pathes by the way. namespace fs = boost::filesystem; std::vector<fs::path> ...
-1
votes
1answer
100 views

C++ directory_iterator

It's been quite a while since I worked with C++, please pardon me for my newbie questions. I wrote the following code to get a listing of the contents of a directory, which is working fine: for ...
1
vote
1answer
71 views

convert file path from windows to linux and back again, using boost::filesystem

Is it me, or does boost::filesystem::path::make_preferred not convert "\" to "/"? davidan@kempt:~/Documents/prog/work!$ ../practice/./path_info c:\pitou foo/bar\baa.txt composed path: cout ...
0
votes
1answer
91 views

Boost::filesystem, std::sort: trouble retaining information on sort passes

I'm trying to use std::sort on a data type that contains information read from a boost::filesystem::dictionary_iterator. It appears that as the sorting algorithm has done n comparisons, n being the ...
0
votes
2answers
61 views

How to store user defined field in metadata of any files?

i am developing a synchronization app, i need to store unique id in the metadata of each files when they are put in to my app, thus i can match the similar files between server and client,(matching ...
1
vote
1answer
55 views

how to determine if file is contained by path with boost filesystem v3

How can I determine if file is contained by path with boost filesystem v3. I saw that there is a lesser or greater operator but this seems to be only lexical. The best way I saw was the following: ...
0
votes
0answers
23 views

Boost filesystem not found

I get the following error during my PION installation in Oracle Linux 5.5: Unable to link with the boost filesystem library The curious is that others libraries can be found and there are in the ...
2
votes
2answers
80 views

boost::filesystem adding quotation marks?

When using boost_filesystem, Boost keeps adding quotation marks to the filenames. foo.cpp: #include <iostream> #include <boost/filesystem.hpp> int main( int argc, char * argv[] ) { ...
1
vote
1answer
132 views

boost::filesystem::exists crashs

I'm using boost 1.52, when i'm trying to get a file from a network drive that i don't have permissions to read from. I get an exception, after using boost::filesystem::exists(fileName) Is there a ...
0
votes
1answer
223 views

list directory files recursively with boost::filesystem

I'm using new boost, v1.5.3, to carry out this task like following, thanks to the class recursive_directory_iterator (I don't have to write recursive code): void ListDirRec(const char *Dir, ...
1
vote
2answers
131 views

boost filesystem copy_file “successful” but no files copied

im having trouble figuring out why my files wont copy. Here's a brief portion of the code: (dir_itr is directory_iterator & root is a path) if (!(is_directory(dir_itr->path()))) { cout ...
0
votes
1answer
94 views

testing a boost example

This is my first test using Boost (1.5.3). I made an example with FileSystem class. I think I've installed successfully the binary distribution, i.e., run bootstrap.bat and b2.exe to create headers ...
0
votes
1answer
78 views

boost copy_file has inconsistent behavior when overwrite_if_exists is used

I am having trouble with boost copy_file(version 1.40.0) method, I would like to overwrite the destination file completely, but it ends up merging source file and destination file if destination text ...
0
votes
1answer
173 views

How to avoid removing directory on remove_all with Boost Libraries?

I'm using boost::filesystem::remove_all operation to remove the content of a directory. It removes correctly the content, but, as state by Boost Filesystem Documentation, it also removes the ...
1
vote
1answer
38 views

Retrieving the Leaf Directory

I've got some older versions of boost code that uses the member function leaf() of the path class in the boost filesystem library. However, when trying to compile it recently, I've noticed this has ...
1
vote
1answer
268 views

Boost cannot open file, 'libboost_filesystem-vc100-mt-gd-1_47.lib'

I have googled the error for hours on end now and have not gotten much of anywhere. I have linked the project in my Visual Studios (2010 & 2012) project as that seems to have resolved everyone ...
2
votes
1answer
105 views

Delete all folders except specific folders

I already have a boost function to delete 1 folder at a time. remove_all(); The list of folders are: folder1 folder2 folder3 folder4 folder5 I wanna delete them all with my function above but keep ...
0
votes
1answer
74 views

Recursively scanning the directory for the files

I am trying to iterate over the directory and print the name of all the files starting from the root. Here's the short snippet I have written using Boost::Filesystem (1.52.0) in my program. void ...
0
votes
0answers
177 views

Link error LNK2019: unresolved external symbol in boost::filesystem

When I introduced boost::filesystem::path into my program, it reported the following errors in build. Error 7 error LNK2019: unresolved external symbol "class boost::filesystem::file_status ...
2
votes
1answer
76 views

Using boost::filesystem::path as a key in an std::map

So std::map wants the key type to be ordered, but I ran into problems: "a/b" < "a/c" < "a//b" but fs::equivalent("a/b", "a//b") "a/b" < "a/c" < "a\b" but fs::equivalent("a/b", "a\b") ...
0
votes
0answers
54 views

Is boost::filesystem::directory_iterator invalidated by deletion?

I am iterating through a directory, and when an item matches some criteria, I delete it. Can I do it safely from within the loop, or to I have to save paths in an array and delete then later? I did ...
0
votes
2answers
95 views

Storing filename got using boost library in std::string variable

I want to get the list of all files in a directory using boost::filesystem I'm able to print the filenames using cout but i'm not able to store the filenames in a string variable. I have also tried ...
0
votes
1answer
161 views

Exception in boost directory iterator constructor

I'm using the boost filesystem iterator and I have a problem when I try to parse a specific folder. The folder is a remote ftp folder mounted using curòlftpfs as root. The same folder can be mounted ...
1
vote
1answer
348 views

Unit Testing Boost filesystem create_directories

I want to unit test the boost filesystem function create_directories() for it's failure case, i.e., when create_directory fails. Can someone please provide any suggestions on how to do this? Another ...
3
votes
2answers
305 views

How do I ignore hidden files (and files in hidden directories) with Boost Filesystem?

I am iterating through all files in a directory recursively using the following: try { for ( bf::recursive_directory_iterator end, dir("./"); dir != end; ++dir ) { const ...
1
vote
1answer
5k views

C++ / Boost Filesystem - mismatch detected for '_MSC_VER': value '1700' doesn't match value '1600'

I'm new to C++ and Boost. I'm doing a small simple program to trying to learn the Boost Filesystem library. I have followed the directions to build the Boost libs. And now when I try to compile this ...
0
votes
1answer
97 views

Determining the exact reason for not opening of file

The problem is that std::fstream doesn't throw exceptions by default but rather sets bits that can then be examined. Apparently, it can then be made to throw exceptions (I think) by using the ...
2
votes
1answer
77 views

Is there a near equivalent to sys/stat.h in boost::filesystem?

In particular, I would like to be able to access the user_id and group_id of a file. The closest equivalent I can find to stat struct is the file_status class but this doesn't appear to have the ...
4
votes
2answers
59 views

Boost path to file in directory pointed by a path

I have a boost path that points to some directory. How do I construct a path that points to a file in that directory? Please comment if this is an obvious thing. Im new to C++ and in Java it's this ...
0
votes
1answer
23 views

method for getting correct system path on windows

I have made up a simple http server using libevent. The way the resource (folders in my case) are accessed is http://serverAddress:port/path/to/resouce/ the path to resource is extracted using the ...
3
votes
2answers
338 views

boost.filesystem create_directories throws std::bad_alloc

I have a Visual Studio 2008 C++03 application using Boost 1.47.0 running in Windows XP SP3. The call boost::filesystem::create_directories( L"c:\\foo\\bar" ); throws a std::bad_alloc exception. In ...
0
votes
1answer
103 views

Why is that output a “Bus error: 10” in a boost program (boost::filesystem)?

I successfully compile the program at the Question How to pass a string type path to boost::filesystem:path's constructor? However, the output result shows more than the expected one. Folder ...
2
votes
2answers
122 views

boost::filesystem normalize filename

I need normalize file names such that it don't contain any non-portable characters in it. There is portable_file_name but that just checks and returns bool. I need to anyhow convert the given string ...
0
votes
2answers
481 views

MongoDB C++ Driver installation on Mac OS

It's been 2 days I'm trying to install the driver C++ of MongoDB but I keep running into the same mistake ( in Mac OS X environnement ) In file included from ...
4
votes
1answer
497 views

boost::filesystem::path and fopen()

I get error when I try to do this: path p = "somepath"; FILE* file = fopen(p.c_str(), "r"); I get: argument of type "const boost::filesystem::path::value_type *" is incompatible with parameter ...
0
votes
1answer
162 views

Environment PATH Directories Iteration

I cant find any code (neither C nor C++ Boost.Filsystem) on how to iterate (parse) the directories present in the PATH environment variable in preferrably in a platform-independent way. It is not so ...
0
votes
1answer
262 views

directory_iterator file_iter to rename files in a folder

I wanted to rename the files in a directory.There are 52 folders in the directory. Each folder has a different name and has around 40 files in each of them.I wanted to extract the name of a particular ...
0
votes
0answers
133 views

boost::filesystem3::path buffer overflow exception

I get buffer overflow exceptions while using boost::filesystem3::path(std::string): void InitConfigurator(const std::string& sConfigFileName) { if(sConfigFileName.empty() || ...
0
votes
1answer
46 views

writing parameters to a file from a (declaration) header

I wish to write the list of all parameter values used for the current run to a parameterFile.txt in the output directory. I have all the parameters declared in one of the header files say ...
0
votes
0answers
120 views

how to change a current output directory in C++?

In my C++ code, I'd like to: create a directory with a custom name (discussed here) cd into the created directory run a function that creates an output file (ofstream) cd .. repeat for a different ...
1
vote
2answers
260 views

C++ project Compatibility with multiple versions of boost

I'm working on a C++ project and I made a couple changes to make it compatible with boost 1.46 (the default version that synaptic installs on Oneiric), but I'd like to also make it compile correctly ...
0
votes
1answer
71 views

Boost FileSystems, need help understanding what I'm doing

I wrote a program using boost filesystems almost a year ago, and I am now trying to go back and use that for a reference, but I'm not sure exactly what is going on with the code, and if there might be ...
2
votes
1answer
215 views

How can I determine the owner of a file or directory using boost filesystem? [duplicate]

Possible Duplicate: Get file's owner and group using boost I'd like to use boost::filesystem to determine which files and directories/ folders are owned by a particular user. I need to ...
1
vote
1answer
194 views

Why does Boost::Filesystem have a binary portion?

Out of intellectual curiosity, I was wondering why the boost::filesystem library had a compiled component, while in other cases no compiled components are necessary. What is in the compiled portion ...

1 2 3