modified

getting the last modified date of a html file

Hi guys, how can i figure out the last modified date of a html file im importing into my web app? The html file is on another server and different users can make updates, when i retrieve the page i want to be able see when it was last updated so i can label the updated date on my homepage. I ...

Trying to find a simple way to do upload only modified files through FTP.

Need to find a way to upload files to my server through FTP. But only the ones that have been modified. Is there a simple way of doing that? Command line ftp client or script is preferred. Thanks, Jonas. ...

how to determine if webpage has been modified

hello, I have snapshots of multiple webpages taken at 2 times. What is a reliable method to determine which webpages have been modified? I can't rely on something like an RSS feed, and I need to ignore minor noise like date text. Ideally I am looking for a Python solution, but an intuitive algorithm would also be great. Thanks! ...

Changing how a telerik radgrid marks a row as "modified"

I am working with the Telerik Winforms Radgrid version 2009.2.9.701 in visual studio 2008 (C#) and I've come across and issue I can't seem to find a solution for. When the radgrid is populated and the user changes a cell within a row, the row is not flagged as "modified" until the user actually clicks onto another location on the datagr...

MySQL: add created and modified fields

What's the best approach to add created and modified fields in MySQL: 1) using MySQL features like on update CURRENT_TIMESTAMP or 2) using PHP (or something else)? Why? If the answer is MySQL, how would you do this? Thank you! ...

Use modified Ant selector in my Java program

Hi, My program needs to scan a directory of files and process those newly modified. I thought I could do something as in a build.xml mytask fileset modified / / But I want to do it programmatically. Any tips? Thanks Bing ...

How to execute some code when a file is modified using python?

Hello, I want to execute one funtion each time a file gets written with new data (gets modified) and I'm using Python. How can I do it? Thanks in advance! :) ...

Problem Installing Application on iPhone: Resource has been modified

Hi, I am working on a simple iPhone application and when I run my app on my machine it installs on the device, but when I try it on a Windows machine using an ad-hoc distribution profile, it shows an error: "Application couldn't be installed because a resource has been modified." I have 2 iPhones and have tested the same app; on iPhone...

Can VBScript determine the most recently modified (or added) file in a particular folder?

Hello, I have a script (or more accurately WILL have a script) that checks a folder and copies a file from this folder to a different location (will run once per day). The fileName that I'd like to copy from, however, changes based on the date. Basically, instead of setting the "strFilePath" to "C:\somePath\somePath2\myFile.txt" I wou...

Last time the contact was modified

Hey, is there a way to find out the last time a contact was modified? I can't seem to find a variable for it. The reason I'm asking is because I'd like to do a sync of the contacts to my web server and I don't feel like checking for each contact with a HTTP request if it needs updating. So I was thinking to check the date of the last u...

File modified date/time changes when uploaded via FTP

FTP/PHP question here. On one of my pages I load .txt files from a directory. Pretty simple. I also display the modified date of the text file using this: date('m/d/Y', filemtime($file)); This works fine on my WAMP server but when I upload the files via FTP, the modified date is changed to when they were uploaded. I'm currently hostin...

How can you find the most recently modified folder in a directory using Ruby?

How can you find the most recently modified folder (NOT A FILE) in a directory using Ruby? ...

Checking when a file was last modified in C# on Windows OS

Hi, I'm looking to find out a way of seeing when a file was last modified in C#. I have full access to the file. Thanks in advance ...