0
votes
3answers
151 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
211 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 / - ...
0
votes
2answers
255 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 ...
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/", ...
0
votes
1answer
770 views

How to run a file in vbscript within the code given below?

Here's the code that I found which matches my criteria. The code below is used to copy file from source path to target path. Conditions implied: Only if the file doesn't exist on the target path or ...
4
votes
3answers
697 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 '*' ...
0
votes
1answer
289 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
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
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 ...
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 ...
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 ...
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! :)