tags:

views:

10

answers:

0

I'm creating files in an AIR application like this:

var file:File = File.documentsDirectory.resolvePath("myFile");
var stream:FileStream = new FileStream();
stream.open(file, FileMode.WRITE);
stream.writeUTFBytes(data);
stream.close();

This leaves the creation and modification dates on created files blank. Is there are way to add this information?