Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
946 views

Why is Java (Android?) setting my file's last modified date to tomorrow?

I'm creating files in my Android application using: FileOutputStream fos = context.openFileOutput(fileName, Context.MODE_PRIVATE); fos.write(data); fos.flush(); fos.close(); Then later I'm trying ...
2
votes
4answers
3k views

How can I get the assembly last modified date?

I want to render (for internal debugging/info) the last modified date of an assembly, so I know when was a certain website deployed. Is it possible to get it though reflection? I get the version ...
1
vote
0answers
372 views

Fluent NHibernate ModifiedDate Version Convention

I am trying to create a fluent Nhibernate automap convention for all the modifiedDate property of my application where it should set the value to get the current date during UPDATE. I am trying the ...
0
votes
1answer
170 views

Setting LastWriteTime to an unzipped file's original timestamp

I am using Sharpziplib version 0.86.0 to extract a zip file. It is working fine but the files extracted are with current DateTime. How could I get the original DateTime? public static void ...
0
votes
1answer
153 views

How could file size change without 'date modified' getting changed? [closed]

I was puzzled seeing this. My vmware virtual machine was running and I was monitoring the size of the virtual disk file. The size of the file kept increasing but 'last modified' date remained ...