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;








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










share|improve this question






























    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










    share|improve this question


























      0












      0








      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










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 28 at 10:46









      Nimer SuliemanNimer Sulieman

      64 bronze badges




      64 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0
















          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.)






          share|improve this answer

























          • 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











          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
          );



          );














          draft saved

          draft discarded
















          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









          0
















          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.)






          share|improve this answer

























          • 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
















          0
















          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.)






          share|improve this answer

























          • 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














          0














          0










          0









          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.)






          share|improve this answer













          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.)







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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


















          • 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









          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.




















          draft saved

          draft discarded















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현