-
Notifications
You must be signed in to change notification settings - Fork 9
/
simple_ls.cpp
91 lines (77 loc) · 2.34 KB
/
simple_ls.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// simple_ls program -------------------------------------------------------//
// Copyright Jeff Garland and Beman Dawes, 2002
// Use, modification, and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
// See http://www.boost.org/libs/filesystem for documentation.
// As an example program, we don't want to use any deprecated features
//#define BOOST_FILESYSTEM_NO_DEPRECATED
#include "boost/filesystem.hpp"
#include <iostream>
#include <string>
using namespace std;
namespace fs = boost::filesystem;
int simple_ls(string dir, string ext)
{
fs::path full_path( fs::initial_path<fs::path>() );
full_path = fs::system_complete( fs::path( dir ) );
unsigned long file_count = 0;
unsigned long dir_count = 0;
unsigned long other_count = 0;
unsigned long err_count = 0;
if ( !fs::exists( full_path ) )
{
std::cout << "\nNot found: " << full_path.string() << std::endl;
return 1;
}
if ( fs::is_directory( full_path ) )
{
// std::cout << "\nIn directory: "
// << full_path.directory_string() << "\n\n";
fs::directory_iterator end_iter;
for ( fs::directory_iterator dir_itr( full_path );
dir_itr != end_iter;
++dir_itr )
{
string name = dir_itr->path().string();
if(!ext.empty()
&& (name.size() <= ext.size()
|| ext != name.substr(name.size()-ext.size()))
) {
continue;
}
try
{
if ( fs::is_directory( dir_itr->status() ) )
{
++dir_count;
std::cout << name << " [directory]\n";
}
else if ( fs::is_regular( dir_itr->status() ) )
{
++file_count;
std::cout << name << "\n";
}
else
{
++other_count;
std::cout << name << " [other]\n";
}
}
catch ( const std::exception & ex )
{
++err_count;
std::cout << dir_itr->path().string() << " " << ex.what() << std::endl;
}
}
// std::cout << "\n" << file_count << " files\n"
// << dir_count << " directories\n"
// << other_count << " others\n"
// << err_count << " errors\n";
}
else // must be a file
{
std::cout << "\nFound: " << full_path.string() << "\n";
}
return 0;
}