The modified tag has no wiki summary.
1
vote
3answers
1k views
PHP copy file without changing the last modified date
According to the comment in PHP manual about Copy(): http://php.net/manual/en/function.copy.php
The copy() will change the last modified date of the destination file.
Is there a way that a file can ...
6
votes
3answers
647 views
Why does Subversion fail to flag a modified Microsoft Excel spreadsheet file?
I have encountered some behaviour I didn't expect from Subversion, and discovered this almost accidentally: A modified file is not being flagged as modified.
I have a unit test involving a Microsoft ...
0
votes
0answers
96 views
XeLaTeX Document Properties - Metadata [closed]
Was compiling a document using
xelatex; and added some of the document properties(metadata) to the
document created; but get lost in the
security and modified attribute. Any help or start up
...
8
votes
3answers
6k views
Checking when a file was last modified in C# on Windows OS
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
1
vote
3answers
1k views
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?
0
votes
1answer
3k views
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 ...
2
votes
2answers
1k views
Last time the contact was modified
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 ...
1
vote
2answers
5k views
Can VBScript determine the most recently modified (or added) file in a particular folder?
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 ...
1
vote
1answer
1k views
Problem Installing Application on iPhone: Resource has been modified
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 ...
0
votes
2answers
99 views
How to execute some code when a file is modified using python?
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! :)
4
votes
1answer
712 views
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 ...
0
votes
1answer
1k views
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 ...
5
votes
4answers
967 views
how to determine if webpage has been modified
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 ...
4
votes
6answers
2k views
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, ...
2
votes
4answers
5k views
getting the last modified date of a html file
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 ...