Quote Originally Posted by Ioannis View Post
1. How is the variable FAT_year handled? With a value of 28 it creates a file of the year 2008. If I wanted a 2014 and set FAT_year to 214, it then creates a file in year 2066
Ioannis
DIR_CrtDate = FAT_day | (FAT_month << 5) | (FAT_year << 9) ' Creation date

DIR_WrtDate = FAT_day | (FAT_month << 5) | (FAT_year << 9) ' Write date.

This exists in the sdfs.pbp file ioannis, And i think it's the formula that creates the date. I hope it can help you.