Recent content by PPeter

  1. P

    C/C++ [C++] Quickly finding directory files using boostfilesystem

    Ah, this is very helpful. It doesn't seem that boost::filesystem has the functionality to do that on it's own, but by using boost:regex to filter, it should be able to speed things up dramatically. Thanks
  2. P

    C/C++ [C++] Quickly finding directory files using boostfilesystem

    I'm working on a program which copies pdf's from one directory to another using boost filesystem. My problem is that the directory I'm grabbing files from contained about 14000 files (not including files in sub-directories). So iterating through each one to find something isn't very practical...
  3. P

    Why are my G++ shared libraries incompatible after switching to Opensuse 12.3?

    Before I switched to Opensuse 12.3, I was running Arch, and doing something like: g++ -o test -I ./include/ -L ./lib/ -ltcod -ltcodxx ./src/main.cpp with no problems occurring. Now, when I try to do that (with everything kept the exact same as when on Arch), I get...
Back
Top