The modified tag has no wiki summary.
0
votes
3answers
165 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 ...
1
vote
2answers
223 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
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 ...
0
votes
2answers
292 views
Comparing two folders based on last modified date
I have two folders A and B, which contain identical folder structure and files, but Folder B contains modified files. Both folders contain subfolders too.
I want to check which files are modified in ...
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
1answer
57 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
1answer
178 views
Hibernate-saving the modified child collection issuing insert statement before delete statement
I have an issue in my multi-tiered application where I have detached my objects from the Session.
I have a user edit via the GUI the properties of a parent object along with adding, editing, and ...
0
votes
1answer
39 views
Cakephp get longest unmodified entries
I have a model A that
$hasMany = array('B' => array('order' => 'B.created DESC'),
'C' => array('order' => 'C.created ASC')
);
So now i want to fetch the 5 ...
0
votes
1answer
157 views
How to know the contact is updated in android?
I am able to get a generic notification "that there was a change to the contacts DB", but I want to know the specific record that was inserted, updated, or deleted. I don't want to use Look-up URI ...
0
votes
1answer
290 views
Get only modified files using VSSGET ant task
How can i get only modified files using VSSGET ant task? Something like update in SVN.
I try to find this option in the documentation, but i didn´t find.
http://ant.apache.org/manual/Tasks/vss.html
0
votes
1answer
232 views
Modified record in Dojo Data Grid
How can i get the modified records from a DOJO Data grid. Like in EXTJS we have an attribute named dirty which is set to true if the record is modified similarly do we have any attribute in dojo which ...
0
votes
1answer
481 views
Dreamweaver falsely prompting about modified files
I use Dreamweaver 8 at work, and recently I've been having an issue with open files. When I move focus away from Dreamweaver to another piece of software (usually firefox for testing the results of ...
0
votes
1answer
137 views
INotifyPropertyChanged in Designer-Generated WinForm for Detecting Modified Controls - Please help
I'm trying to implement a way of detecting when a form has been modified by the user, and I'm trying to use the INotifyPropertyChanged (INPC) interface to do it. But, I'm using the Visual C# Express ...
1
vote
0answers
77 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
0answers
517 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 ...
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
268 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
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
0answers
93 views
trick to obtain date of external source file, why does it work in Chrome but not firefox?
I use the following code to obtain the date of its own file:
var lastmod =
($("body").append(ifr=$("<iframe src=\"this.js\">")),
ifr[0].contentWindow.document.lastModified)
|| "???";
In ...
0
votes
0answers
311 views
Using Javascript to search a directory for the most recent file and create a URL to link to it
I have looked online for the past few hours and have not been able to find a viable solution.
I am trying to use javascript to search a specific directory on my webserver for the last modified image ...