Click here to Skip to main content
Click here to Skip to main content

Seagate Date Code Calculator

By , 6 Aug 2007
 

Screenshot - SeagateDateCode.jpg

Introduction

The code described in this article helps users convert Seagate's (the hard drive manufacture) date code to a DateTime value.

This article is based on this documentation.

Background

I had to check some hard drives for warranty, and found myself checking very old hard drives.

The code

Here is the actual code invloved:

Class variables

private DateTime datecalc;
private string _datecode;

Class properties

public string DateCode
{
    get { return _datecode; }
    set 
    {
        int _CodeYear = 0;
        byte _CodeWeek = 0;
        byte _CodeDayOfWeek = 0;
        _datecode = value;
        if (_datecode.Length == 5)
        {
            //Get the number of weeks to add
            _CodeWeek = Convert.ToByte(_datecode.Substring(2, 2));
            //Get the day of the week in the final week
            _CodeDayOfWeek = Convert.ToByte(_datecode.Substring(4));
        }
        else if (_datecode.Length == 4)
        {
            //Get the number of weeks to add
            _CodeWeek = Convert.ToByte(_datecode.Substring(2, 1));
            //Get the day of the week in the final week
            _CodeDayOfWeek = Convert.ToByte(_datecode.Substring(3));
        }
        if (_datecode.Length == 4 || _datecode.Length == 5)
        {
            _CodeWeek--;
            _CodeDayOfWeek--;
            _CodeYear = (2000 + Convert.ToInt32(_datecode.Substring(0, 2)) - 1);
            datecalc = new DateTime(_CodeYear, 7, 1);
            datecalc.AddDays(-1);
            do { datecalc = datecalc.AddDays(1); } 
            while (datecalc.DayOfWeek != DayOfWeek.Saturday);
            datecalc = datecalc.AddDays((_CodeWeek * 7) + _CodeDayOfWeek);
        }
    }
}

public DateTime CalculatedDate
{
    get { return datecalc; }
}

Class constructors

public SeagateDateCodeCalc()
{

}
public SeagateDateCodeCalc(string dateCode)
{
    this.DateCode = dateCode;
}

History

This is my first submission here, so let me know if I am missing anything.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Paw Jershauge
Software Developer
Denmark Denmark
Member

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralRunning the progmembergimmegimme8 Oct '08 - 11:00 
GeneralRe: Running the progmemberPaw Jershauge9 Oct '08 - 2:42 
GeneralRe: Running the progmembericefloe018 Jan '09 - 4:37 
GeneralRe: Running the progmemberPaw Jershauge8 Jan '09 - 10:14 
GeneralRe: Running the progmembericefloe018 Jan '09 - 11:40 
Please don't get the wrong impression, I wasn't trying to bash you. I spent a LOT of time trying to organize my thoughts so that I would not come across that way. I was just trying express why I thought they said what they said. I had also spent quite some time (30-45 min) trying to find a simple solution to decoding the Seagate date code when Google popped up your project. I had some ideas in mind for an Excel spreadsheet to do it and was about to pursue that when codeproject popped up. I actually had Visual Studio Express installed (hadn't gotten around to learning it yet) when I had XP Pro installed. I haven't downloaded the latest version since upgrading to Vista Ultimate 64, but I do want to get into programming sometime this year as it will help out quite a bit at work too. Once again, I apologize if I came across as harsh, that was not my intent. Smile | :)
GeneralRe: Running the progmemberKnight of Cydonia11 Jan '09 - 12:37 
GeneralRe: Running the progmemberPaw Jershauge11 Jan '09 - 23:47 
GeneralRe: Running the progmemberKnight of Cydonia12 Jan '09 - 8:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 6 Aug 2007
Article Copyright 2007 by Paw Jershauge
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid