Is date modified of the files shows that the file has been used by lighttpd or not?How do I check whether a file exists without exceptions?How do I copy a file in Python?How to get file creation & modification date/times in Python?How do I create a Java string from the contents of a file?Undo working copy modifications of one file in Git?Why should text files end with a newline?How do I include a JavaScript file in another JavaScript file?Writing files in Node.jsHow to read a file line-by-line into a list?How do you append to a file in Python?
How to be sure services and researches offered by the University are not becoming cases of unfair competition?
Has SHA256 been broken by Treadwell Stanton DuPont?
Parallel resistance in electric circuits
Reading double values from a text file
Is there any reason to concentrate on the Thunderous Smite spell after using its effects?
What makes a smart phone "kosher"?
Are space camera sensors usually round, or square?
What was the ultimate objective of The Party in 1984?
What is a "major country" as named in Bernie Sanders' Healthcare debate answers?
Why don't Wizards use wrist straps to protect against disarming charms?
Why are some files not movable on Windows 10?
If I want an interpretable model, are there methods other than Linear Regression?
Why is the year in this ISO timestamp not 2019?
Which is the current decimal separator?
Output a Super Mario Image
Is a suit against a University Dorm for changing policies on a whim likely to succeed (USA)?
How does a simple logistic regression model achieve a 92% classification accuracy on MNIST?
How offensive is the French word "femmelette" considered to be?
Real mode flat model
Is there a tool to measure the "maturity" of a code in Git?
sed replacing character in a file
Is there any way to land a rover on the Moon without using any thrusters?
I am getting "syntax error near unexpected token `'$#''" in a simple Bash script
How to write characters doing illogical things in a believable way?
Is date modified of the files shows that the file has been used by lighttpd or not?
How do I check whether a file exists without exceptions?How do I copy a file in Python?How to get file creation & modification date/times in Python?How do I create a Java string from the contents of a file?Undo working copy modifications of one file in Git?Why should text files end with a newline?How do I include a JavaScript file in another JavaScript file?Writing files in Node.jsHow to read a file line-by-line into a list?How do you append to a file in Python?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
IS date modified of the files shows that the file has been used by lighttpd or not?
I am trying to clean my hardisks becouse they are now a buttle neck problem, they are full of data, I need to know how to find the files that lighttpd didn't stream to users more that 1.5 years to delete thes becouse they are not in use.
Is date modefided is the best solution for that?
Thanks
file centos lighttpd
add a comment
|
IS date modified of the files shows that the file has been used by lighttpd or not?
I am trying to clean my hardisks becouse they are now a buttle neck problem, they are full of data, I need to know how to find the files that lighttpd didn't stream to users more that 1.5 years to delete thes becouse they are not in use.
Is date modefided is the best solution for that?
Thanks
file centos lighttpd
add a comment
|
IS date modified of the files shows that the file has been used by lighttpd or not?
I am trying to clean my hardisks becouse they are now a buttle neck problem, they are full of data, I need to know how to find the files that lighttpd didn't stream to users more that 1.5 years to delete thes becouse they are not in use.
Is date modefided is the best solution for that?
Thanks
file centos lighttpd
IS date modified of the files shows that the file has been used by lighttpd or not?
I am trying to clean my hardisks becouse they are now a buttle neck problem, they are full of data, I need to know how to find the files that lighttpd didn't stream to users more that 1.5 years to delete thes becouse they are not in use.
Is date modefided is the best solution for that?
Thanks
file centos lighttpd
file centos lighttpd
asked Mar 28 at 10:46
Nimer SuliemanNimer Sulieman
64 bronze badges
64 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
Absolutely not. Date modified is not a good indication of access.
If you have web logs, you should consult those for what was served by lighttpd.
Absent that, you might look at atime (access time) instead of mtime (modification time) if your server is configured to track atimes and you do not have anything crawling the volume which would update the atimes. (You'll have to look at your server yourself to answer that question. Nobody can answer it for you.)
Thanks a lot Can you please write a sample of atime check for /media/mp4 ? to check witch is not accessed for the past year?
– Nimer Sulieman
Apr 11 at 8:00
find /media/mp4 -atime +365
– gstrauss
Apr 12 at 15:23
add a comment
|
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55395662%2fis-date-modified-of-the-files-shows-that-the-file-has-been-used-by-lighttpd-or-n%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Absolutely not. Date modified is not a good indication of access.
If you have web logs, you should consult those for what was served by lighttpd.
Absent that, you might look at atime (access time) instead of mtime (modification time) if your server is configured to track atimes and you do not have anything crawling the volume which would update the atimes. (You'll have to look at your server yourself to answer that question. Nobody can answer it for you.)
Thanks a lot Can you please write a sample of atime check for /media/mp4 ? to check witch is not accessed for the past year?
– Nimer Sulieman
Apr 11 at 8:00
find /media/mp4 -atime +365
– gstrauss
Apr 12 at 15:23
add a comment
|
Absolutely not. Date modified is not a good indication of access.
If you have web logs, you should consult those for what was served by lighttpd.
Absent that, you might look at atime (access time) instead of mtime (modification time) if your server is configured to track atimes and you do not have anything crawling the volume which would update the atimes. (You'll have to look at your server yourself to answer that question. Nobody can answer it for you.)
Thanks a lot Can you please write a sample of atime check for /media/mp4 ? to check witch is not accessed for the past year?
– Nimer Sulieman
Apr 11 at 8:00
find /media/mp4 -atime +365
– gstrauss
Apr 12 at 15:23
add a comment
|
Absolutely not. Date modified is not a good indication of access.
If you have web logs, you should consult those for what was served by lighttpd.
Absent that, you might look at atime (access time) instead of mtime (modification time) if your server is configured to track atimes and you do not have anything crawling the volume which would update the atimes. (You'll have to look at your server yourself to answer that question. Nobody can answer it for you.)
Absolutely not. Date modified is not a good indication of access.
If you have web logs, you should consult those for what was served by lighttpd.
Absent that, you might look at atime (access time) instead of mtime (modification time) if your server is configured to track atimes and you do not have anything crawling the volume which would update the atimes. (You'll have to look at your server yourself to answer that question. Nobody can answer it for you.)
answered Mar 28 at 22:50
gstraussgstrauss
1,0396 silver badges10 bronze badges
1,0396 silver badges10 bronze badges
Thanks a lot Can you please write a sample of atime check for /media/mp4 ? to check witch is not accessed for the past year?
– Nimer Sulieman
Apr 11 at 8:00
find /media/mp4 -atime +365
– gstrauss
Apr 12 at 15:23
add a comment
|
Thanks a lot Can you please write a sample of atime check for /media/mp4 ? to check witch is not accessed for the past year?
– Nimer Sulieman
Apr 11 at 8:00
find /media/mp4 -atime +365
– gstrauss
Apr 12 at 15:23
Thanks a lot Can you please write a sample of atime check for /media/mp4 ? to check witch is not accessed for the past year?
– Nimer Sulieman
Apr 11 at 8:00
Thanks a lot Can you please write a sample of atime check for /media/mp4 ? to check witch is not accessed for the past year?
– Nimer Sulieman
Apr 11 at 8:00
find /media/mp4 -atime +365
– gstrauss
Apr 12 at 15:23
find /media/mp4 -atime +365
– gstrauss
Apr 12 at 15:23
add a comment
|
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55395662%2fis-date-modified-of-the-files-shows-that-the-file-has-been-used-by-lighttpd-or-n%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown