Questions tagged [date-modified]
The date-modified tag has no summary.
10 questions
2 votes
3 answers
2k views
How do I limit 'git ls-tree' to certain filetypes?
I need to generate a list of all the images and css files with the modified dates, from a commit, for example. git ls-tree -r --name-only HEAD | while read filename; do echo "$(git log -1 --format="...
1 vote
0 answers
58 views
What is modifying the CREATE date of my files?
A fairly advanced Windows user here (operating at 3rd Line/TA level for 15 years). Today is 16th June 2016... I just browsed through a 100GB of photos within my local Pictures folder collected over ...
7 votes
2 answers
58k views
Rename files to add date modified to filename with Windows CMD or simple .TXT
I am attempting to rename a large batch of files to incorporate the dates in the "Date Modified" column from File Explorer into each filename in YYYYMMDD format. I was able to generate a ...
3 votes
1 answer
3k views
batch - File last modification time with seconds
I want to know when a file has been modified for the last time. I can get these infos using the following batch script: FOR %%i IN (myfile) DO SET modif_time=%%~ti The problem is how to get the ...
1 vote
1 answer
128 views
list all files with the same name in order of when they were modified
I have a directory, let's call it htdocs/live/. Many different directories are underneath this directory, each with a file commonFunctions.js living in the js directory. For example, here is the ...
0 votes
1 answer
6k views
FTP in Windows Explorer's date modified timestamp is off by 5 hours
We are using Serv-U as our FTP server on Windows Server 2008 R2. When I use windows explorer on a Windows 7 desktop to connect to the ftp site the Date Modified timestamp is off by exactly 5 hours......
1 vote
2 answers
2k views
Why, sometimes the full content is returned unchanged, while If-Modified-Since is set?
my php-generated thumbnail files and combined javascript and css files (all having their expiration dates anc cache=public set etc) return the full content sometimes, other times they load from proxy ...
1 vote
1 answer
212 views
Editing modification times of files on Mac OS X
How can I set the modification time of a file on Mac OS X from the command line?
1 vote
1 answer
2k views
How to check the last time a directory was modified in linux
I am trying to write a backup solution, which will take snapshots of a folder using hardlinks and rsync, every hour it will run though its thing, and take the snapshot. I have most of it sorted ...
5 votes
2 answers
21k views
Can I tell the last modified date on an SSIS package from Integration Services
Using SQL Server 2005 (and 2008) With a DTS package, I can open it, and it lists the date that the package was last modified. I have some SSIS packages, and I need to know if they have been modified ...