Tagged Questions

0
votes
2answers
57 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
0answers
95 views

Shell script to find out if two files from a list of files are created on the same day

Hi I would like to find out using a korn shell script if two files from a list of files are created on the same day. I need to check the current file against the previous file in the list to see if …
0
votes
1answer
113 views

How to get data from dynmically created Treeview.

I am using ComponentArt Third party controls for ASP.NET 2.0. Here is the problem i am facing. I created some ComponentArt.Web.UI.TreeView at runtime on Page_Load. Now at click event of a button, i …
3
votes
5answers
1k views

How to get date picture created in java

I would like to extract the date a jpg file was created. Java has the lastModified method for the File object, but appears to provide no support for extracting the created date from the file. I …