Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
2k views

What takes precedence: the ETag or Last-Modified HTTP header?

For two subsequent requests, which of the following two headers is given more weight by browsers should one of them change: ETag or Last-Modified?
10
votes
4answers
12k views

C# find most recent file in dir

I need to find the most recently modified file in a directory. I know I can loop through every file in a folder and compare File.GetLastWriteTime but is there a better way to do this without looping?
6
votes
9answers
5k views

How to check if directory contents has changed with PHP?

I'm writing a photo gallery script in PHP and have a single directory where the user will store their pictures. I'm attempting to set up page caching and have the cache refresh only if the contents ...
6
votes
5answers
6k views

How can I find the newest created file in a directory?

Is there an elegant way in Perl to find the newest file in a directory (newest by modification date)? What I have so far is searching for the files I need, and for each one get it's modification ...
5
votes
4answers
342 views

Is ctime always <= mtime?

When using os.stat() in Python, can I assume that st_ctime is always less then or equal to st_mtime? If not, why not? The code will always run on Linux, but if there is a difference in OS's, that ...
5
votes
4answers
477 views

How to get the file with latest lastModified date, in Java?

I have a directory of files that I need to check for changes. I consider it changed when one of the files has a modifiedDate newer than what I remembered from the last check (this is meant to be a ...
4
votes
2answers
389 views

Get modification date for NSManagedObject in Core Data?

Outside of adding an NSDate property to each Entity in my Core Data store, is there a programmatic way to get the modification date for any object?
4
votes
2answers
463 views

(Weak) ETags and Last-Modified

As far as I understand the specs, the ETag, which was introduced in RFC 2616 (HTTP/1.1) is a predecessor of the Last-Modified-Header, which is proposet to give the software-architect more controll ...
4
votes
2answers
165 views

HTTP headers: Last-Modified - how can it mimimize server load?

Imagine the following use case: I use an AJAX request for getting some info about Item and use this URL: http://domain/items/show/1 In my database all items have a field called modified_at where we ...
4
votes
3answers
1k views

How do I get the last modification time of a Java resource?

Can someone please tell me a reliable way to get the last modification time of a Java resource? The resource can be a file or an entry in a JAR.
4
votes
1answer
45 views

How can I update a setting based on the build?

I have developed a HTTP resource, that uses the Last-Modified header, and it should reflect any modifications made to the application. I would like to update this field to tell the build date, or the ...
4
votes
4answers
2k views

.htaccess not working - only caching images and not JS or CSS [closed]

Duplicate: Why isn’t my javascript & css caching ? I'm noticing that I'm only receiving 304 HTTP codes (cached content) for images but not JavaScript or CSS. My .htaccess file is: Options ...
3
votes
1answer
58 views

How to get last write date of a RavenDB document via C#

In the Raven Studio UI, when you look into a document you can read (on the right of the page) the last write date of the document. I don't find any access via the client API in C# to this ...
3
votes
3answers
53 views

Git: Find last edits from a specific user in a specific file

I have a project which sources are controlled with help of git. Right now I want to find out when my teammate made last edits in a specific file. I want to find out SHA1 of commit or to see his edits ...
3
votes
2answers
61 views

Simplest way to honor only the latest of a series of javascript/jQuery events

I have to imagine that this is a common use case for javascript/jQuery, so forgive me if it's somewhere else on the site, I searched for it and couldn't find this basic use case. I have a visible div ...
3
votes
2answers
493 views

Is it possible to get last modified date from an assets file?

Bizarre question: is it possible to get the last modified date of a file in the assets folder, or would that be pointless and impossible? I ask because I'm copying a read-only database out of there ...
3
votes
4answers
944 views

Why is Java (Android?) setting my file's last modified date to tomorrow?

I'm creating files in my Android application using: FileOutputStream fos = context.openFileOutput(fileName, Context.MODE_PRIVATE); fos.write(data); fos.flush(); fos.close(); Then later I'm trying ...
3
votes
2answers
829 views

Remove Etag and Last-Modified headers from IIS

Did you know you can prevent the revalidation of files in browser cache and subsequent 304 response by completely removing both the ETag and Last-Modifed response headers? Of course, this is easy in ...
3
votes
2answers
3k views

Get file modified date in VB.NET

I have a number of files in a folder, I need to get the last modified date. So I used FDate = IO.File.GetLastWriteTime(FName) Works fine with some files, but on others, I get a date of 1/1/1601. ...
3
votes
6answers
277 views

Last Updated Date: Antipattern?

I keep seeing questions floating through that make reference to a column in a database table named something like DateLastUpdated. I don't get it. The only companion field I've ever seen is ...
2
votes
2answers
95 views

File Last Modified

Is it safe to use File Last Modified (e.g. NTFS) when detecting if a file has changed? If not, does file backup applications always hash the whole file to check for changes? If so what hash algorithm ...
2
votes
3answers
95 views

Trying to set the last modified time of a file in Java after renaming it

Here's the code I started off with: long modifiedTime = [some time here]; File oldFile = new File("old_name.txt"); boolean renamed = oldFile.renameTo(new File("new_name.txt"); boolean timeChanged = ...
2
votes
1answer
343 views

Which one to use : Expire Header, Last Modified Header or ETags

I am in confusion to perform the server side caching and make the site load faster. I am confused between Expire Header, Last Modified Header and Etags. What is the best approach to perform this, ...
2
votes
1answer
233 views

Caching, Weak Etags, and Last-Modified Issues

I'm having trouble with a few images on a site that I'm developing. Some images are being cached correctly and their headers seem correct (strong etags, correct last-modified). But other images have ...
2
votes
4answers
442 views

File.lastModified() painfully slow!

I'm doing a recursive copy of files and like xcopy /D I only want to copy newer files destination files (I cannot use xcopy directly since I need to alter some files in the copy process). In java I ...
2
votes
3answers
457 views

Last modification date for a live SQL Server 2005 database

Is there a way to know when the last write operation has occurred in a live SQL Server 2005 database? I currently have 30 (and growing) databases on my server. Only some of these see daily activity ...
2
votes
2answers
705 views

Java: Detecting modification to a file (file polling?)

What is the most efficient way to detect modification to a file in Java? I've read about file polling however, the polling approach has a number of drawbacks that become apparent as the number of ...
2
votes
5answers
2k views

Windows: How to determine if a file has been modified since a given date

I have a utility which goes through a processes a set of files in a directory - the process is relatively slow (and there are a lot of files) and so I've tried to optimise the process by only ...
2
votes
1answer
863 views

Search EWS CalendarItems with last modified time

I'm searching CalendarItems with ExchangeWebServices..In msdn document there is a field as LastModifiedTime. How do I query CalendarItems by LastModifiedTime with ExchangeServerBindings ?
2
votes
3answers
227 views

Is there something like Perl's Win32::FileNotify for Linux or OS X?

I've been using Win32::FileNotify on Windows, and I was curious to know if there were something similar for Linux and OS X. I haven't been able to find such a module using Google. Does anyone here ...
2
votes
1answer
632 views

ASP.NET MVC getting last modified date/FileInfo of View

I'm required to include the last modified date on every page of my applications at work. I used to do this by including a reference to <%= LastModified %> at the bottom of my WebForms master page ...
2
votes
3answers
955 views

mod_rewrite RewriteCond based on Last-modified? (.htaccess)

I know that we can easily base a RewriteCond on any http request header. But can we check (some of) the response headers that are going to be sent? In particular, the Last-modified one? I want to ...
2
votes
1answer
1k views

Get last modified and other file info from remote server with PHP

A weekly mp3 is uploaded to an external server. I manually copy this to my server and link it for podcasting and archive etc. The external file is then replaced the following week. I can copy the ...
2
votes
3answers
2k views

MySQL table modified timestamp

I have a test server that uses data from a test database. When I'm done testing, it gets moved to the live database. The problem is, I have other projects that rely on the data now in production, so ...
2
votes
2answers
428 views

Apache2 mod_perl Last-Modified header ignored

I have a perl generated page. The contents of this page change every 30 minutes, so I'm setting $r->set_last_modified() to the time the contents last changed. That all works well and I can see the ...
2
votes
3answers
645 views

Is there anyway to detect if there are changes from the website?

Is there currently some kind of application which can time to time check against a website on whether it has been updated?
1
vote
1answer
31 views

DOS dir /tw switch not working

I'm trying to compare a list of files with a control file on their modified timestamp using dir /b /tw /od controlfile olderfile | more +1 this should return the controlfile as the modified date ...
1
vote
2answers
58 views

Can I get File Modification Time from a file open for reading (python)

Do files opened like file("foo.txt") have any info about file modification time? Basically I want to know if the file has been modified or replaced since a certain time, but if the file is replaced ...
1
vote
2answers
65 views

How to save a string for later use?

I am currently working on having a file update from a remote server. I am able to download the file and save it to the documents directory. The file has a "Last-Modified" tag and I am using it to ...
1
vote
0answers
48 views

Under what circumstances could Expires, Last-Modified and ETags headers be ignored?

I have a web site that is recieving many unexpected requests for static resources (images, css files etc) that I would expect to be being served straight from the browser's cache. This is a ...
1
vote
1answer
42 views

SQL: How to make a query that return last created row per each user from table's data

Consider following table's data ID UserID ClassID SchoolID Created 2184 19313 10 28189 2010-10-25 14:16:39.823 46697 19313 10 27721 2011-04-04 14:50:49.433 ...
1
vote
1answer
33 views

Windows batch script isn't working as expected

I'm trying to write a quick batch script to look at the last modified date of one file and compare it to the last modified date of a few others, and if it's greater than those other lastmods, it ...
1
vote
2answers
227 views

Getting all files modified within a date range

We have a asp.net,C# application in which there is a requirement to get all the files whose date modified will be b/w startdate and enddate . How can we achieve this ? Also want to get all the files ...
1
vote
1answer
198 views

Using Groovy to sort HTML Table by lastModified() dates

I have a groovy script that pulls a number of fields from a MYSQL database and inserts the data into an HTML table, along with this I find the lastModified() date of the files that are pulled into the ...
1
vote
1answer
554 views

SharePoint - don't change Modified Date on Update

I'm currently deploying a SharePoint solution with publishing pages. These pages allow the user to select "Do not update the modified-date". This is solved by a small controll placed on the page. ...
1
vote
1answer
729 views

VBA - How to get the last modified file or folder in a directory in Excel 2010

What I want to do is more complex than selecting a file from a list of files. I will start in a directory, then I want to change to the most recently modified directory. I then want to repeat that ...
1
vote
2answers
95 views

Django - “last_modified” or “auto_now_add” for an App (or more than one Model?)

I know Django has a feature of last_modified field (models.DateTimeField(auto_now_add=True) ).. but let's say I have a certain App, and I want to know when was the last change for any of its Model (I ...
1
vote
2answers
101 views

Insert “Last Modified” timestamp into javadoc footer

Is there a way to specify the last modified date of the class file? I'd like each javadoc page to have the last modified timestamp of the class file included, preferrably in the footer. I thought I ...
1
vote
1answer
148 views

BAT: if statement based on modify date of file

I want to see if a lock file modify date is more than a 5 seconds ago or it in the future (indicating the PC clock was changed back). How can I say if file.modifydate < now - 5 seconds or ...
1
vote
1answer
48 views

Finding out when a line has been modified in a H2 database table

Let's imagine I have two processes A and B performing transactions on a H2 database table T. Process A performs CRUD (Create, Read, Update, Delete) on T. Process B wants to know when line L in T has ...

1 2 3