Support directories (instead of crashing)
This commit is contained in:
parent
7eee8d8bbb
commit
1ce1732e68
@ -1,10 +1,10 @@
|
|||||||
default: tiv
|
default: tiv
|
||||||
|
|
||||||
tiv.o: tiv.cpp CImg.h
|
tiv.o: tiv.cpp CImg.h
|
||||||
g++ -std=c++11 -Wall -fexceptions -O2 -c tiv.cpp -o tiv.o
|
g++ -std=c++17 -Wall -fpermissive -fexceptions -O2 -c tiv.cpp -o tiv.o
|
||||||
|
|
||||||
tiv : tiv.o
|
tiv : tiv.o
|
||||||
g++ tiv.o -o tiv -pthread -s
|
g++ tiv.o -o tiv -lstdc++fs -pthread -s
|
||||||
|
|
||||||
install: tiv
|
install: tiv
|
||||||
cp tiv /usr/local/bin/tiv
|
cp tiv /usr/local/bin/tiv
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
|
#include <experimental/filesystem>
|
||||||
|
|
||||||
#define cimg_display 0
|
#define cimg_display 0
|
||||||
#include "CImg.h"
|
#include "CImg.h"
|
||||||
@ -435,10 +436,19 @@ int main(int argc, char* argv[]) {
|
|||||||
} else if (arg[0] == '-') {
|
} else if (arg[0] == '-') {
|
||||||
std::cerr << "Unrecognized argument: " << arg << std::endl;
|
std::cerr << "Unrecognized argument: " << arg << std::endl;
|
||||||
} else {
|
} else {
|
||||||
file_names.push_back(arg);
|
if (std::experimental::filesystem::is_directory(arg)) {
|
||||||
|
for (auto & p : std::experimental::filesystem::directory_iterator(arg)) {
|
||||||
|
if (std::experimental::filesystem::is_regular_file(p.path())) {
|
||||||
|
file_names.push_back(p.path().string());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
file_names.push_back(arg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (mode == FULL_SIZE || (mode == AUTO && file_names.size() == 1)) {
|
if (mode == FULL_SIZE || (mode == AUTO && file_names.size() == 1)) {
|
||||||
for (unsigned int i = 0; i < file_names.size(); i++) {
|
for (unsigned int i = 0; i < file_names.size(); i++) {
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user