The modified tag has no wiki summary.
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
6
votes
3answers
642 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 ...
5
votes
4answers
966 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, ...
4
votes
2answers
712 views
What is a vimrc function to determine if a buffer has been modified?
I have a tabline function that I stole/modified from somewhere, but I would like the filename to have an asterisk before it if it has been modified since the last time it was written to disk (ie if ...
4
votes
3answers
704 views
Unix command line : How to get the total size of modified files in the last 30 days
I want to know how to get the total size of the modified files in the last 30 days.
I have found this command who onlye give me the list of the modified files in the last 30 days.
find . -name '*' ...
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 ...
3
votes
1answer
363 views
Vim Buffer has been modified [duplicate]
Possible Duplicate:
What is a vimrc function to determine if a buffer has been modified?
I am trying to implement an AutoCmd in Vim that needs to be executed when the current buffer has ...
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 ...
2
votes
4answers
370 views
Selection sort modified
I have written a modified version of selection sort where I consider both a minimum and maximum of an array and place them at the two ends
The alogirthm works like this
1. Find the minimum and the ...
2
votes
3answers
89 views
Variable mysteriously keeps changing after recursive algorithm
I cant figure out why a completely unrelated variable gets changed after every time I run a recursive algorithm. There is absolutely no place where I in any way assign new values to this variable, but ...
2
votes
1answer
138 views
Java (Concurrent)HashMap Performance for Frequent Modifications
I use a ConcurrentHashMap (key: String, value: custom object) as one of my data structures. the map contains about 300,000 objects and will be updated frequently (about 20,000 put and 20,000 removes ...
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
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?
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
4answers
110 views
CDN jQuery with lot of uneccessary functions or own FTP jQuery with less functions?
I just figured out how to add custom functions/plug-ins to jQuery from my previous question How to extend jQuery from CDN?. Now, my question is, how if some functions in jQuery isn't necessary for the ...
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 ...
1
vote
1answer
689 views
Variably modified, but err, how?
Ok, I understand this is probably ugly as heck, but I cannot understand why I cannot use TILES_X, TILES_Y or TILES_TOTAL as global array lengths, GCC crying about it being "Variably modified at file ...
1
vote
1answer
309 views
gfortran optimization causes fortran do-variable loop error during runtime
I have written a fortran routine that uses some legacy fortran 77 code for finite elements. However, with a particular mesh, when the -O optimization flag is turned on, an important do-loop iterator ...
1
vote
3answers
369 views
Python “if modified since” detection?
I wrote some code to tackle a work-related problem. The idea is that the program is in an infinite loop and every 10 minutes it checks a certain folder for new files and if there are any, it copies ...
1
vote
3answers
120 views
Change as an <p> text show itself every click with JavaScript using a series of quotes you have
So that's my question, (I know it could be a very easy one but I ma completely new to JavaScript). So I have a list of quotes. I need a script that every time the user click wherever part of the ...
1
vote
3answers
1k views
How to get the modified time of a file being uploaded in JavaScript/PHP?
Is there ever a way possible to get the actual creation / modification time of the file being uploaded, using JavaScript / PHP?
As for JavaScript, I have researched a lot, tried quite a few codes, ...
1
vote
2answers
178 views
is there a way to use tortoise svn to backup my modified files?
I have a bunch of files that I've changed that I don't really want to commit, but I would like to back them up locally in case I would like to use them again. (Then I'll revert them.)
TortoiseSvn ...
1
vote
1answer
484 views
Chrome extension: how do I do modify DOM of a determinate page with contextMenus?
As title, how to be able to apply the modifications to another page, different from that of background?
Manifest:
{
"name": "First Extension",
"version": "1.0",
"description": "The first ...
1
vote
2answers
413 views
created modified function (default) is not working in Cakephp 1.2 version
I created an application and all the db tables have 'created,modified' fields that filled automatically by Cakephp's Default Functionality.
And i put the Field Type is
created datetime NULL,
modified ...
1
vote
2answers
216 views
Find modified files and echo them into a txt file on server root
I'd need a shell command to show of the last modified and new files on the whole server (recursive) and echoing them into a txt file in the root.
Has anybody something like this?
I tried
find / - ...
1
vote
1answer
289 views
Change btRigidBody's position/orientation on-the-fly in Bullet Physics
I know it breaks physics laws, but although there are often practical reasons to change instantaneously the position and orientation of a body in a game, most physic simulation libraries won't allow ...
1
vote
1answer
305 views
NSFetchedResultsController's delegate doesn't fire after predicate is changed
I've been troubleshooting this issue for several hours now, no success so far. I've read all question here on SO that might be related to my problem.
I've got two Entities (A, B) that are connected ...
1
vote
2answers
169 views
Include ant modified selector based on condition
I am modifying my exiting ant script to support differential builds. For that I have used modified selector in fileset for finding only modified files. But the problem is when I am doing full build I ...
1
vote
0answers
76 views
How to list files that was modified last from a directory using ruby
# List the file that was updated the last
lst_fl = Dir.glob("/home/developer/myFiles/*")
files_updated_last = Dir["/home/developer/myFiles/*"]
Dir.glob(File.join("/home/developer/myFiles/", ...
1
vote
2answers
464 views
Ninject throwing “Collection was modified; enumeration operation may not execute” error
Hello I am using the following 2 Ninject assemblies in my web project.
Ninject.dll – Version 2.2.0.0
Ninject.Web.dll – Version 2.2.0.4
I have noticed that when I perform load testing on the server I ...
1
vote
0answers
516 views
Using NSFileManager to get the modified date of a copied file
I'm using NSFileManager's attributesOfItemAtPath to calculate the date a file was last modified in OS X. While this works, in many cases the file modification date doesn't behave as I would have ...
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! :)
0
votes
2answers
258 views
Modified time using os.stat in Python gets lower when copying files
The issue I am running into is part of using os.stat on a path (Take C:\myfile1.txt for example). When I run os.stat on this file and take the 9th element in the resulting list I get the modified time ...
0
votes
3answers
143 views
Is there a file in a directory with a modified date of today - Batch File
I am new to batch files and have some basic understanding and can edit batches if I see them in front of me.
I wonder if you could help me with the following requirement for my batch file.
Is there a ...
0
votes
1answer
49 views
Does Eclipse use the build-in compiler on export function?
I recently found this post. It basically says that Eclipse has a modified build-in compiler. It creates class files even if the java files contain errors.
Is this modified compiler used to create ...
0
votes
1answer
27 views
How to detect effectively if the values of widgets inside an Activity changed?
I have an activity with multiple sorts of controls: EditTexts, Comboboxes, Spinners. The user can modify the values of the controls accordingly.
When the Back button was hit, I want to check if any ...
0
votes
1answer
68 views
Does entity framework compare assigned values with original to determine IsModified flag?
If I load entity object and then assign one of properties to the same value as it had before, does framework detect changes or it would set IsModified flag to true anyway ?
This is how generated code ...
0
votes
1answer
126 views
Stat and file not modified in last minutes
I need to get with stat unix command (or similar like find) possibly on one line of command all file in a folder that ARE NOT changed in the last 5 minutes for example.
I found a lot of examples with ...
0
votes
1answer
476 views
Gridview to excel: The Controls collection cannot be modified because the control contains code blocks
I'm gettin error "The Controls collection cannot be modified because the control contains code blocks."
I wanna Export GridView to Excel.
Thank you.
my method is(its work i tested)
private void ...
0
votes
1answer
385 views
Detecting insert/update/delete in CakePHP's AppController's afterFilter method
I have some code I've added to the afterFilter() method of my AppController (/app/app_controller.php) in a CakePHP app I'm developing. This code rebuilds a large, static file and I only want to incur ...
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 ...
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 ...
0
votes
2answers
34 views
Copy File on Modification FIleSystemWatcher, Visual Basic (VS 2012 V11)
After looking through many sites and some tutorial videos, I'm still stumped on this one. I'm finishing up a program and I need to add one last bit of functionality.
The program works this way. The ...
0
votes
0answers
65 views
How to create patch file for deleted/renamed/moved files?
I'm using TortoiseSVN. As shown here, I can use Create patch and Apply patch for modified files, and it works OK.
However, when I delete, rename or moved a certain files, then choose Create patch. ...
0
votes
0answers
265 views
MATLAB: Sum of an infinite series, with Fibonacci coefficients
I need to find f(x), which the sum of the following infinite series:
f(x) = sum {C_{n}*x^{n}} ; sum goes from n = 0 to Inf
C[n] is the modified Fibonacci series such that, C[0] = 2, C[1] = 3, and ...
0
votes
1answer
56 views
Renaming a directory in svn
I had a folder structure like this:
A/B/C/hello.txt
I used svn mv to rename A to Z:
Z/B/C/hello.txt
I then made some modifications to hello.txt. Now, svn status gives:
D A/B/C/hello.txt
A+ ...
0
votes
0answers
28 views
If a web server accepts user input only after modification, should he respond the client with a warning header?
Usually, whenever my web server proceed to persist user input after having modified it, I respond the client with a nice JSON formatted string of all the key/value pairs that was modified. Thus I give ...
0
votes
3answers
157 views
How can I get a file's last modified time in asp.net?
I need to find the time when the file was last modified in a day.
Using the below code I only get the date..
System.IO.File.GetLastWriteTime(Server.MapPath("myFile.txt")).ToString("D");
How to get ...

