Here's the reason you're not seeing milliseconds...
When a drawing is created, it uses the system time stamp which doesn't has milliseconds as an option.
Granted, this couldn't be set programmatically by Autodesk developers but that's not the case.
To test this further, you can use the following syntax within CMD which will tell you the actual time the file was created.
Open a new command prompt and type the following:
wmic datafile where name="C:\\temp\\drawing.dwg" get creationdate | findstr /brc:[0-9]
Change the name value to the correct path of the file. Note the double-slashes as they are required.
The output will show something like this:
20161005132100.000000-240
[Year] [Month] [Day] [Hour] [Min] [Sec].[Milliseconds]...
That would indeed indicate the file was created using a timestamp depth of seconds (ss)
There's really nothing that you can do, unless you intervene the creation of the file to tag on milliseconds programmatically which isn't worth it in my opinion.
Hope that helps.
If this information was helpful, please consider using the Accept Solution