Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
56428eb9
Commit
56428eb9
authored
Jul 01, 2017
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added last_modified() method to dlib::file.
parent
48c68f21
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
dir_nav_kernel_2.cpp
dlib/dir_nav/dir_nav_kernel_2.cpp
+6
-0
dir_nav_kernel_2.h
dlib/dir_nav/dir_nav_kernel_2.h
+12
-0
No files found.
dlib/dir_nav/dir_nav_kernel_2.cpp
View file @
56428eb9
...
@@ -62,6 +62,12 @@ namespace dlib
...
@@ -62,6 +62,12 @@ namespace dlib
else
else
{
{
state
.
file_size
=
static_cast
<
uint64
>
(
buffer
.
st_size
);
state
.
file_size
=
static_cast
<
uint64
>
(
buffer
.
st_size
);
state
.
last_modified
=
std
::
chrono
::
system_clock
::
from_time_t
(
buffer
.
st_mtime
);
#ifdef _BSD_SOURCE
state
.
last_modified
+=
std
::
chrono
::
nanoseconds
(
buffer
.
st_atim
.
tv_nsec
);
#endif
}
}
}
}
...
...
dlib/dir_nav/dir_nav_kernel_2.h
View file @
56428eb9
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
#include <sys/stat.h>
#include <sys/stat.h>
#include <errno.h>
#include <errno.h>
#include <stdlib.h>
#include <stdlib.h>
#include <chrono>
#if !defined(__USE_LARGEFILE64 ) && !defined(_LARGEFILE64_SOURCE)
#if !defined(__USE_LARGEFILE64 ) && !defined(_LARGEFILE64_SOURCE)
#define stat64 stat
#define stat64 stat
...
@@ -63,6 +64,7 @@ namespace dlib
...
@@ -63,6 +64,7 @@ namespace dlib
uint64
file_size
;
uint64
file_size
;
std
::
string
name
;
std
::
string
name
;
std
::
string
full_name
;
std
::
string
full_name
;
std
::
chrono
::
time_point
<
std
::
chrono
::
system_clock
>
last_modified
;
};
};
void
init
(
const
std
::
string
&
name
);
void
init
(
const
std
::
string
&
name
);
...
@@ -74,12 +76,14 @@ namespace dlib
...
@@ -74,12 +76,14 @@ namespace dlib
const
std
::
string
&
name
,
const
std
::
string
&
name
,
const
std
::
string
&
full_name
,
const
std
::
string
&
full_name
,
const
uint64
file_size
,
const
uint64
file_size
,
const
std
::
chrono
::
time_point
<
std
::
chrono
::
system_clock
>&
last_modified
,
private_constructor
private_constructor
)
)
{
{
state
.
file_size
=
file_size
;
state
.
file_size
=
file_size
;
state
.
name
=
name
;
state
.
name
=
name
;
state
.
full_name
=
full_name
;
state
.
full_name
=
full_name
;
state
.
last_modified
=
last_modified
;
}
}
...
@@ -110,6 +114,9 @@ namespace dlib
...
@@ -110,6 +114,9 @@ namespace dlib
inline
uint64
size
(
inline
uint64
size
(
)
const
{
return
state
.
file_size
;
}
)
const
{
return
state
.
file_size
;
}
inline
std
::
chrono
::
time_point
<
std
::
chrono
::
system_clock
>
last_modified
(
)
const
{
return
state
.
last_modified
;
}
operator
std
::
string
(
operator
std
::
string
(
)
const
{
return
full_name
();
}
)
const
{
return
full_name
();
}
...
@@ -383,6 +390,10 @@ namespace dlib
...
@@ -383,6 +390,10 @@ namespace dlib
{
{
file_size
=
static_cast
<
uint64
>
(
buffer
.
st_size
);
file_size
=
static_cast
<
uint64
>
(
buffer
.
st_size
);
}
}
auto
last_modified
=
std
::
chrono
::
system_clock
::
from_time_t
(
buffer
.
st_mtime
);
#ifdef _BSD_SOURCE
last_modified
+=
std
::
chrono
::
nanoseconds
(
buffer
.
st_atim
.
tv_nsec
);
#endif
if
(
S_ISDIR
(
buffer
.
st_mode
)
==
0
)
if
(
S_ISDIR
(
buffer
.
st_mode
)
==
0
)
{
{
...
@@ -391,6 +402,7 @@ namespace dlib
...
@@ -391,6 +402,7 @@ namespace dlib
data
->
d_name
,
data
->
d_name
,
path
+
data
->
d_name
,
path
+
data
->
d_name
,
file_size
,
file_size
,
last_modified
,
file
::
private_constructor
()
file
::
private_constructor
()
);
);
files
.
enqueue
(
temp
);
files
.
enqueue
(
temp
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment