Revision 57e6c22f
Added by David Sorber over 9 years ago
| software/photo_compress_archiver/main.cc | ||
|---|---|---|
|
std::cout << std::endl;
|
||
|
}
|
||
|
|
||
|
|
||
|
// NOTE: useful filter: -f ^\\._.+$
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
bpo::variables_map general_opts_vm;
|
||
| ... | ... | |
|
std::cerr << " " << e.what() << std::endl;
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
std::cout << " filter regex => ON (" << filter_regex << ")\n";
|
||
|
}
|
||
|
|
||
|
std::cout << std::endl;
|
||
Finished up the changes to make argv a std::vector instead of a regular array. I also implemented the changes to control the size of argv based on system configuration and potentially spawn packJPG multiple times in order to handle a very large number of files. I ran a test on my Photos library and it sort of worked but I ran into some issues that I still need to diagnose.