Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
2k views

expand file names that have environment variables in their path

What's the best way to expand ${MyPath}/filename.txt to /home/user/filename.txt or %MyPath%/filename.txt to c:\Documents and settings\user\filename.txt with out traversing the path string ...
6
votes
2answers
3k views

Should boost::filesystem::exists really throw an exception for removable media device with no media?

I've run into a bit of an odd circumstance while using boost::filesystem::exists. If you attempt to check for the existance of a file on a drive that isn't ready or has no media in it, it throws a ...
6
votes
4answers
4k views

how to perform boost::filesystem copy_file with overwrite

The Windows API function CopyFile has an argument BOOL bFailIfExists that allows you to control whether or not you want to overwrite the target file if it exists. The boost::filesystem copy_file ...
5
votes
1answer
4k views

boost::filesystem exists() on directory path fails, but is_directory() is ok

I'm getting path to current directory with boost filesystem, then checking if the directory exists. is_directory() is ok, but exists() fails on the same path, am I missing something? Example code ...
4
votes
2answers
2k views

Why autoconf isn't detecting boost properly?

I am using autoconf to detect boost libraries, with the support of the autoconf-archive macros and they work fine with system-wide boost libraries, but fail if I manually compile boost in my home ...
4
votes
3answers
497 views

Cross-platform library for manipulating Windows paths?

I am writing a cross-platform application that needs to inspect and manipulate Windows-paths. Specifically, for the particular problem I am having now, I need to know if a path is absolute or ...
3
votes
2answers
86 views

Iterate over all files in a directory using BOOST_FOREACH

Can you iterate over all files in a directory using boost::filesystem and BOOST_FOREACH? I tried path dirPath = ... int fileCount = 0; BOOST_FOREACH(const path& filePath, dirPath) ...
3
votes
1answer
90 views

boost filesystem::path constructor std::length_error

i am trying to iterate over a directory using Boost.Filesystem library. The problem is that when i try to instantiate a path object, i get an std::length_error with the message "string too long" with ...
3
votes
1answer
165 views

directory_iterator - make a copy to “rewind”?

So I wrote a small program to try out Boost Filesystem. My program will write how many files there is in the current path and then the file names. Here's my program: #include <iostream> ...
3
votes
2answers
864 views

Get relative path from two absolute paths

I have two absolute filesystem paths (A and B), and I want to generate a third filesystem path that represents "A relative from B". Use case: Media player managing a playlist. User adds file to ...
3
votes
2answers
175 views

how to find out if path leads to executable file?

So I try to create some kind of file browser. and I whant to know if file under path is executable (crossplatform). How to do such thing with boost::filesystem?
3
votes
1answer
425 views

Can I get file attributes (hidden/archive…) with boost filesystem?

I am using boost::filesystem to copy a directory recursively. I would like to exclude hidden files. Is it possible to get the FAT32 file attributes like "hidden" or "archive" using boost filesystem? ...
3
votes
2answers
107 views

Comparison operators for directory_entry are missing

Consider the following program: #include <iostream> #include "boost/filesystem.hpp" int main() { boost::filesystem::directory_entry d("test.txt"); boost::filesystem::directory_entry ...
3
votes
1answer
579 views

Why is there no boost::filesystem::move_file?

I'm using boost filesystem to replace windows C++ functions like CopyFile and MoveFile get some kind of portability between windows and linux. I'm using copy_file but I have not been able to find ...
3
votes
2answers
585 views

Implementing Qt File Dialog with a Different File System Library (boost)

I am writing an application which requires me to use another file system and file engine handlers and not the qt's default ones. Basically what I want to be able to do is to use qt's file dialog but ...
2
votes
2answers
134 views

Obtain platform's path separator using Boost.Filesystem

Is there a way to obtain the platform's path separator character using Boost.Filesystem? By path separator, I mean / for Unix and \ for Windows. I already know I can use ...
2
votes
2answers
96 views

Why does boost::filesystem is_directory return different results when run as a Windows Service?

I have some code that iterates through files in a directory and does useful things with the non-directory files, like so: namespace bfs = boost::filesystem; for (bfs::directory_iterator ...
2
votes
0answers
133 views

boost::filesystem::create_directories() problem

I am using boost::filesystem::create_directories() to create new directories. But, when I try to access these directories shortly after creation, I get an error saying no such directory. But if I ...
2
votes
2answers
118 views

How to save file into possibly new directory?

So I have some base boost::filesystem::path Base I want to create folder if one does not exist and create a binary file from string. Currently I have a function like this: void ...
2
votes
1answer
316 views

Problem linking Boost.Filesystem statically to a shared library

I'm building a shared library with GCC 4.5.2 and Boost 1.46.1 (compiled with --build-type=complete) and this is a command from Makefile which does the linkage part: $(CXX) -static -lboost_filesystem ...
2
votes
2answers
92 views

Having a map with paths how to compare tham to given path?

We have map of boost path to string pairs like name:location (absolute location paths a la usr/myfolder/). We are given with some location a la usr/myfolder/mysubfolder/myfile. How to find which of ...
2
votes
1answer
246 views

how to subtract one path from another?

So... I have a base path and a new path.New path contains in it base path. I need to see what is different in new path. Like we had /home/ and new path is /home/apple/one and I need to get from it ...
2
votes
1answer
226 views

how to make a copy of boost::filesystem::directory_iterator?

I know this sounds stupid, but look at this simple example (working dir should have more than one item): #define BOOST_FILESYSTEM_VERSION 3 #include <boost/filesystem.hpp> #include ...
2
votes
1answer
254 views

boost::filesystem v3 - correct case of path

Hi Is there an efficient way of correct the case of an given windows path? fs::path dir("c:/winDOWS"); --> C:/Windows? (without Windows-API!)
2
votes
2answers
555 views

How to create a folder in the home directory?

I want to create a directory path = "$HOME/somedir". I've tried using boost::filesystem::create_directory(path), but it fails - apparently the function doesn't expand system variables. How can I ...
2
votes
1answer
1k views

Is there an easier way to pop off a directory from boost::filesystem::path?

I have a relative path (e.g. "foo/bar/baz/quux.xml") and I want to pop a directory off so that I will have the subdirectory + file (e.g. "bar/baz/quux.xml"). You can do this with path iterators, but ...
1
vote
2answers
83 views

C++: Error with Boost Filesystem copy_file

I'm running into some trouble with the copy_file function. My program is very simple, I'm just attempting to copy a text file from one spot to another. The following code brings up a "Debug Error!" ...
1
vote
1answer
223 views

How to check for new files in the directory?

Given: filesystem::path toDir("./"); ptime oldTime; ptime now(second_clock::local_time()); How can I determine which files were created in the time period between oldTime and now? The names of ...
1
vote
2answers
176 views

boost::copy_file copy_option to skip over existing destination file?

I would like to copy a file to an other, and I would like to use Boost::copy_file. It has a paramether called copy_option which can be: BOOST_SCOPED_ENUM_START(copy_option) {none, ...
1
vote
2answers
343 views

Switched from Visual Studio 2008 to Visual Studio 2010 and unable to link to boost filesystem now

I just switched from Visual Studio 2008 to Visual Studio 2010 and one of my projects is now getting a linker error: LINK: fatal error LNK1104: cannot open file ...
1
vote
2answers
223 views

Boost.Filesystem crashes

Does anyone had this problem ? When searching a partition with recursive_directory_iterator, when it reaches the end it crashes. I get this in Visual Studio 2008 with boost 1.39 but also at home using ...
1
vote
2answers
150 views

C++: Boost: Need help with directory navigation logic

So, I'm trying to change my directory to save files, and then change back to the directory I was previously in. Essentially: cd folder_name <save file> cd ../ Here is the code I have so far: ...
1
vote
2answers
354 views

boost::filesystem How having a correct path to file read it into stringstream?

So I have a path p and I can call for example is_regular_file(p) and file_size(p) on it but how to read that file into stringstream? (btw I need only to read it)
1
vote
2answers
2k views

Problem linking with Boost.Filesystem

I am trying to use the functions from boost::filesystem to change my current working directory (and create it if necessary). I am getting linking errors: SBDir.cpp:(.text+0x23): undefined reference ...
1
vote
1answer
621 views

How to use copy_file in boost::filesystem?

I want to copy a file from directory to another, but my program always aborts for some reasons.Has anyone done this this before could tell me what was wrong? And how could I catch exceptions was ...
1
vote
1answer
1k views

boost::filesystem::path and std::string

I have a String class which has a member std::string. One of the constructor is String (std::string s) { // member: std::string _mString; _mString = s; // error on path assignment } I now ...
1
vote
4answers
360 views

C++: How to modify a files 'created' timestamp?

I need to modify the 'created' (if exists), 'modified' and 'accessed' timestamps of a file. Ideally this would be a platform-independent solution. I've looked around the boost libraries but I can't ...
1
vote
1answer
277 views

Explain boost::filesystem's portable generic path format in C++

I am trying to understand portable generic path format and everything is not clicking. Can someone please explain this in terms of examples? I also have been told that I can use the forward slash in ...
1
vote
1answer
1k views

Compose path (with boost::filesystem)

I have a file that describes input data, which is split into several other files. In my descriptor file, I first give the path A that tells where all the other files are found. The originator may set ...
1
vote
0answers
160 views

What is best way to convert a file URL to a BOOST filesystem path in C++?

I'm writing a library that has filenames as inputs. One feature that I'm trying to include is to allow the user to pass in file URLs or file paths, because sometimes the input is generated from ...
1
vote
2answers
662 views

Boost Filesystem Compile Error

I'm writing some code that utilizes the boost filesystem library. Here is an excerpt of my code: artist = (this->find_diff(paths_iterator->parent_path(), this->m_input_path) == 1) ? ...
1
vote
1answer
805 views

How do I copy files and folders using boost and Visual Studio 2005?

I'm trying to use boost::filesystem to copy files and folders (just like a standard copy a folder and paste it in windows explorer). Although I've been to the boost::filesystem documentation, I still ...
1
vote
2answers
1k views

Installing Boost libraries on Snow Leopard

I have followed the directions on the boost website. I have put the boost dir in the path. I still cannot compile a C++ program using the boost libraries. I am specifically trying to use the ...
1
vote
1answer
3k views

boost::filesystem::path for unicode file paths?

Is there a way to use boost::filesystem::path with unicode file paths? In particular I'd like to use it with std::wstring instead of std::string. I'm working on the windows platform and I need to ...
0
votes
0answers
17 views

How to manipulate permissions of directories created by boost::filesystem3::create_directories()?

I want to explicitly specify permissions of bunch of directories created by function create_directories() just before their creation. How this can be done elegantly without affecting any other ...
0
votes
0answers
23 views

Missing Exception in Boost Process

I want to use Boost Process eventhough it has not been release yet. I did svn co svn://svn.boost.org/svn/boost/sandbox/process/ boost-process added boost-process to include path (-I) and #included ...
0
votes
0answers
55 views

boost 1.48 filesystem3 symbol link error ploblem

My project setting : /I"..\ANTLR_LIB" /I"..\eNITL" /I"......\boost" /ZI /nologo /W3 /WX- /MP /Od /Oy- /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_VC80_UPGRADE=0x0710" /D "_UNICODE" /D "UNICODE" /D ...
0
votes
1answer
219 views

boost::filesystem::path::append (via iterators) causes compiler error

I'm trying to generate new path using boost::filesystem as follows #include <iostream> #include <string> #include <boost\filesystem.hpp> namespace bf = boost::filesystem; bf::path ...
0
votes
0answers
43 views

Remove . and .. from a path [closed]

Possible Duplicate: Removing ..'s in boost filesystem::complete I have a path and want to remove all . and .. folders from it. e.g. bla/../asd/./foo -> asd/foo How can I do that ...
0
votes
2answers
219 views

Using boost::iostreams::mapped_file_source with wide character strings

If I instantiate a mapped_file_source (boost 1.46.1 ) with a narrow character string as in the following I don't have a problem: boost::iostreams::mapped_file_source m_file_( "testfile.txt" ); ...

1 2