-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE REQUEST] Add creation date to File Info #758
Comments
I'm looking through |
It shows
So yeah, not possible. |
Technically speaking the FAT Filesystem itself doesn't even support creation timestamps, only last modification. Closing this as not possible, as said by the two messages above. |
Thank you for the quick responses. I have some unexplained questions now.
Steps to reproduce:
Note: Under File Info "modified" displays the modified timestamps - there are no problems here. Question: |
According to this documentation, FAT and exFAT stores creation time. It doesn't look like a hack, these filesystems support this in general. In my case FAT32 and exFAT should have no problems with creation time, because on Windows 11 and macOS 12 the standard file managers show the creation time. See in the right table under Dates recorded: |
If you can find documentation leading to getting file creation dates in C, that'll be of more use than a Wikipedia. It doesn't look like it's possible at the moment. |
It looks like there is no such thing in C standard. It looks like the developers of FATFS need to support this and additionally fix the bug in this report (see point 9) #758 (comment) because according to the test it does not support the created timestamp for directories. It only supports modified timestamps for files and folders. Another question is there a system call from Nintendo 3DS operating system to display file info? |
I don't think that's publicly available. |
Check your own sources, creation time is available in DOS 7.x and later (basically Win9x). It does mean it's well supported by mainstream OSes, but it's not really a part of the specification itself. In the end, it means it doesn't need to be supported and FATFS rightfully doesn't do it. We don't support exFAT anyway, so that's a non-issue. |
Are you a FATFS developer or why this seemingly official answer from a FATFS developer? If the FATFS developers don't want it, I accept that decision, but there are open questions that have not been answered. If the FATFS developers didn't want it, then I would have expected creation time to be generally not mentioned under It looks like it is intended to support creation time, only there are bugs in the current version. That's why it would be very helpful if you can reopen the report here, because it's a feature request. FAT32 supports a total of 3 timestamps as I see it, Created, Modified and Accessed. The third timestamp Accessed I would like to be able to display also in GodMode9. |
You don't seem to know how GitHub works. Anyone besides yourself who has the power to close your issue/request is either the creator or a trusted collaborator. Your request has been denied, so move on. If it's code borrowed from a 3rd party library, and you think there is a bug, then your issue belongs with said library anyway. Not here. |
Got a great idea on how to improve GodMode9?
Currently GodMode9 v2.1.0 shows only "Modified" timestamps at File Info. For me it is too little details.
The "Created" timestamps should be displayed.
Describe the feature you'd like
I'm used to seeing "Modified" and "Created" timestamps in the default file manager on my Windows and macOS notebook when I use my SD card from the 3DS or local external hard drive. Here what I mean exactly.
File Explorer (Windows 11)
Finder (macOS 12)
Describe alternatives you've considered
There is no alternative.
The text was updated successfully, but these errors were encountered: