Hello Community, I am working with a controller which has FATFS in it. When i am trying to create folder with name as YY-MM-DD it is giving me an error, it is only accepting YYMMDD format, i have to differentiate year, month and day with some symbol,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-01-20 3:57 AM
can somebody tell me, how to do it
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-01-20 5:23 AM
Hello @MDevi.1​,
The date format of YY-MM-DD is not supported by FATFS.
I think, as a solution, you can use the underscore character as the delimiter instead. For example, your folder name could be YYMM_DD.
Hope that helps!
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-01-20 5:23 AM
Hello @MDevi.1​,
The date format of YY-MM-DD is not supported by FATFS.
I think, as a solution, you can use the underscore character as the delimiter instead. For example, your folder name could be YYMM_DD.
Hope that helps!
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-01-21 3:55 AM
Thank you for reply, it is worked .
