Partition Formats

Has anyone seen any reference material which describes, in detail, the disk
format of FAT32 and NTFS? I would like to be able to create a blank
partition that is FAT32 or NTFS.

Thanks In Advance,
Joe


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

To format a media with FAT, take a look into the RAMDisk.c File of the NT4
DDK. Also Microsoft released a the FAT Specifications on their Homepage.

A. Roth

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com]On Behalf Of Joe Moriarty
Sent: Wednesday, June 27, 2001 1:30 PM
To: NT Developers Interest List
Subject: [ntdev] Partition Formats

Has anyone seen any reference material which describes, in detail, the disk
format of FAT32 and NTFS? I would like to be able to create a blank
partition that is FAT32 or NTFS.

Thanks In Advance,
Joe


You are currently subscribed to ntdev as: xxxxx@arsoft-online.de
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

For FAT32 look at
http://209.67.75.168/hardware/fatgen.htm

their is nothing documented for NTFS. Maybe you can look at NTFS linux
development

or you can use win32 API.

regards
jeseem

----- Original Message -----
From: “Andreas Roth”
To: “NT Developers Interest List”
Sent: Wednesday, June 27, 2001 7:37 PM
Subject: [ntdev] RE: Partition Formats

> To format a media with FAT, take a look into the RAMDisk.c File of the NT4
> DDK. Also Microsoft released a the FAT Specifications on their Homepage.
>
> A. Roth
>
> -----Original Message-----
> From: xxxxx@lists.osr.com
> [mailto:xxxxx@lists.osr.com]On Behalf Of Joe Moriarty
> Sent: Wednesday, June 27, 2001 1:30 PM
> To: NT Developers Interest List
> Subject: [ntdev] Partition Formats
>
>
> Has anyone seen any reference material which describes, in detail, the
disk
> format of FAT32 and NTFS? I would like to be able to create a blank
> partition that is FAT32 or NTFS.
>
> Thanks In Advance,
> Joe
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@arsoft-online.de
> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@hotmail.com
> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

There are a lot of NTFS implementations for Linux. The NTFS data structures
are been defined in the source files.

You might want to take a look @ this is excellent link for the FS
connectivity.

http://students.ceid.upatras.gr/~gef/fs/oldindex.html

-----Original Message-----
From: Jeseem S [mailto:xxxxx@hotmail.com]
Sent: Wednesday, June 27, 2001 6:36 PM
To: NT Developers Interest List
Subject: [ntdev] RE: Partition Formats

For FAT32 look at
http://209.67.75.168/hardware/fatgen.htm

their is nothing documented for NTFS. Maybe you can look at NTFS linux
development

or you can use win32 API.

regards
jeseem

----- Original Message -----
From: “Andreas Roth”
To: “NT Developers Interest List”
Sent: Wednesday, June 27, 2001 7:37 PM
Subject: [ntdev] RE: Partition Formats

> To format a media with FAT, take a look into the RAMDisk.c File of the NT4
> DDK. Also Microsoft released a the FAT Specifications on their Homepage.
>
> A. Roth
>
> -----Original Message-----
> From: xxxxx@lists.osr.com
> [mailto:xxxxx@lists.osr.com]On Behalf Of Joe Moriarty
> Sent: Wednesday, June 27, 2001 1:30 PM
> To: NT Developers Interest List
> Subject: [ntdev] Partition Formats
>
>
> Has anyone seen any reference material which describes, in detail, the
disk
> format of FAT32 and NTFS? I would like to be able to create a blank
> partition that is FAT32 or NTFS.
>
> Thanks In Advance,
> Joe
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@arsoft-online.de
> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@hotmail.com
> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>


You are currently subscribed to ntdev as: xxxxx@nai.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

FAT and FAT32 specifications are available on the Microsoft Website. NTFS is
a little more complex. I recommend looking at the Linux source for the Linux
NTFS file system driver.

Jamey
----- Original Message -----
From: Joe Moriarty
To: NT Developers Interest List
Sent: Wednesday, June 27, 2001 4:29 PM
Subject: [ntdev] Partition Formats

> Has anyone seen any reference material which describes, in detail, the
disk
> format of FAT32 and NTFS? I would like to be able to create a blank
> partition that is FAT32 or NTFS.
>
> Thanks In Advance,
> Joe
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@storagecraft.com
> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

This is only FAT 12.

Jamey
----- Original Message -----
From: Andreas Roth
To: NT Developers Interest List
Sent: Wednesday, June 27, 2001 6:07 PM
Subject: [ntdev] RE: Partition Formats

> To format a media with FAT, take a look into the RAMDisk.c File of the NT4
> DDK. Also Microsoft released a the FAT Specifications on their Homepage.
>
> A. Roth
>
> -----Original Message-----
> From: xxxxx@lists.osr.com
> [mailto:xxxxx@lists.osr.com]On Behalf Of Joe Moriarty
> Sent: Wednesday, June 27, 2001 1:30 PM
> To: NT Developers Interest List
> Subject: [ntdev] Partition Formats
>
>
> Has anyone seen any reference material which describes, in detail, the
disk
> format of FAT32 and NTFS? I would like to be able to create a blank
> partition that is FAT32 or NTFS.
>
> Thanks In Advance,
> Joe
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@arsoft-online.de
> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@storagecraft.com
> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

There is a good chapter on NTFS file organization in the book
“Windows NT/2000 Native API Reference” by Gary Nebbett.
isbn 1-57870-199-6.

George

George Blat
NT with real time performance
8016 188th SW, Edmonds, WA 98026

phone: 425-775-7475
fax: 781-998-5940
mailto:xxxxx@ntrealtime.com

At 09:41 AM 6/28/01 +0400, you wrote:

FAT and FAT32 specifications are available on the Microsoft Website. NTFS is
a little more complex. I recommend looking at the Linux source for the Linux
NTFS file system driver.

Jamey
----- Original Message -----
From: Joe Moriarty
>To: NT Developers Interest List
>Sent: Wednesday, June 27, 2001 4:29 PM
>Subject: [ntdev] Partition Formats
>
>
> > Has anyone seen any reference material which describes, in detail, the
>disk
> > format of FAT32 and NTFS? I would like to be able to create a blank
> > partition that is FAT32 or NTFS.
> >
> > Thanks In Advance,
> > Joe
> >
> >
> > —
> > You are currently subscribed to ntdev as: xxxxx@storagecraft.com
> > To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>
>
>—
>You are currently subscribed to ntdev as: xxxxx@ntrealtime.com
>To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

RAMDisk.c is for FAT16. I need FAT32. Anyone else seen reference material
on FAT32 or NTFS. I doubt that I will get NTFS, but I would think that
FAT32 is available for inspection.

Thanks In Advance,
Joe

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com]On Behalf Of Andreas Roth
Sent: Wednesday, June 27, 2001 10:07 AM
To: NT Developers Interest List
Subject: [ntdev] RE: Partition Formats

To format a media with FAT, take a look into the RAMDisk.c File of the NT4
DDK. Also Microsoft released a the FAT Specifications on their Homepage.

A. Roth

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com]On Behalf Of Joe Moriarty
Sent: Wednesday, June 27, 2001 1:30 PM
To: NT Developers Interest List
Subject: [ntdev] Partition Formats

Has anyone seen any reference material which describes, in
detail, the disk
format of FAT32 and NTFS? I would like to be able to create a blank
partition that is FAT32 or NTFS.

Thanks In Advance,
Joe


You are currently subscribed to ntdev as: xxxxx@arsoft-online.de
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: xxxxx@east.sun.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

Catching up on the emails.

Joe

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com]On Behalf Of Jamey Kirby
Sent: Thursday, June 28, 2001 1:41 AM
To: NT Developers Interest List
Subject: [ntdev] RE: Partition Formats

This is only FAT 12.

Jamey
----- Original Message -----
From: Andreas Roth
> To: NT Developers Interest List
> Sent: Wednesday, June 27, 2001 6:07 PM
> Subject: [ntdev] RE: Partition Formats
>
>
> > To format a media with FAT, take a look into the RAMDisk.c File
> of the NT4
> > DDK. Also Microsoft released a the FAT Specifications on their Homepage.
> >
> > A. Roth
> >
> > -----Original Message-----
> > From: xxxxx@lists.osr.com
> > [mailto:xxxxx@lists.osr.com]On Behalf Of Joe Moriarty
> > Sent: Wednesday, June 27, 2001 1:30 PM
> > To: NT Developers Interest List
> > Subject: [ntdev] Partition Formats
> >
> >
> > Has anyone seen any reference material which describes, in detail, the
> disk
> > format of FAT32 and NTFS? I would like to be able to create a blank
> > partition that is FAT32 or NTFS.
> >
> > Thanks In Advance,
> > Joe
> >
> >
> > —
> > You are currently subscribed to ntdev as: xxxxx@arsoft-online.de
> > To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
> >
> >
> > —
> > You are currently subscribed to ntdev as: xxxxx@storagecraft.com
> > To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@east.sun.com
> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

There are a lot of NTFS implementations for Linux. The NTFS and other FS
formats and data structures are defined in the source files.

You might want to take a look @ this is excellent link for the FS
connectivity which also has the sources I am talking about.

http://students.ceid.upatras.gr/~gef/fs/oldindex.html

-----Original Message-----
From: Joe Moriarty [mailto:xxxxx@east.sun.com]
Sent: Thursday, June 28, 2001 4:55 AM
To: NT Developers Interest List
Subject: [ntdev] RE: Partition Formats

RAMDisk.c is for FAT16. I need FAT32. Anyone else seen reference
material
on FAT32 or NTFS. I doubt that I will get NTFS, but I would think that
FAT32 is available for inspection.

Thanks In Advance,
Joe

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com]On Behalf Of Andreas Roth
Sent: Wednesday, June 27, 2001 10:07 AM
To: NT Developers Interest List
Subject: [ntdev] RE: Partition Formats

To format a media with FAT, take a look into the RAMDisk.c File of the NT4
DDK. Also Microsoft released a the FAT Specifications on their Homepage.

A. Roth

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com]On Behalf Of Joe Moriarty
Sent: Wednesday, June 27, 2001 1:30 PM
To: NT Developers Interest List
Subject: [ntdev] Partition Formats

Has anyone seen any reference material which describes, in
detail, the disk
format of FAT32 and NTFS? I would like to be able to create a blank
partition that is FAT32 or NTFS.

Thanks In Advance,
Joe


You are currently subscribed to ntdev as: xxxxx@arsoft-online.de
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: xxxxx@east.sun.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: xxxxx@nai.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

Thanks for the information everybody. I think I have what I need.

Joe

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com]On Behalf Of xxxxx@nai.com
Sent: Thursday, June 28, 2001 11:00 AM
To: NT Developers Interest List
Subject: [ntdev] RE: Partition Formats

There are a lot of NTFS implementations for Linux. The NTFS and other FS
formats and data structures are defined in the source files.

You might want to take a look @ this is excellent link for the FS
connectivity which also has the sources I am talking about.

http://students.ceid.upatras.gr/~gef/fs/oldindex.html

-----Original Message-----
From: Joe Moriarty [mailto:xxxxx@east.sun.com]
Sent: Thursday, June 28, 2001 4:55 AM
To: NT Developers Interest List
Subject: [ntdev] RE: Partition Formats

RAMDisk.c is for FAT16. I need FAT32. Anyone else seen reference
material
on FAT32 or NTFS. I doubt that I will get NTFS, but I would think that
FAT32 is available for inspection.

Thanks In Advance,
Joe

> -----Original Message-----
> From: xxxxx@lists.osr.com
> [mailto:xxxxx@lists.osr.com]On Behalf Of Andreas Roth
> Sent: Wednesday, June 27, 2001 10:07 AM
> To: NT Developers Interest List
> Subject: [ntdev] RE: Partition Formats
>
>
> To format a media with FAT, take a look into the RAMDisk.c File
of the NT4
> DDK. Also Microsoft released a the FAT Specifications on their Homepage.
>
> A. Roth
>
> -----Original Message-----
> From: xxxxx@lists.osr.com
> [mailto:xxxxx@lists.osr.com]On Behalf Of Joe Moriarty
> Sent: Wednesday, June 27, 2001 1:30 PM
> To: NT Developers Interest List
> Subject: [ntdev] Partition Formats
>
>
> Has anyone seen any reference material which describes, in
> detail, the disk
> format of FAT32 and NTFS? I would like to be able to create a blank
> partition that is FAT32 or NTFS.
>
> Thanks In Advance,
> Joe
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@arsoft-online.de
> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@east.sun.com
> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>


You are currently subscribed to ntdev as: xxxxx@nai.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: xxxxx@east.sun.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

There is some good information on NTFS including header files on
http://www.fsys.demon.nl/

regards,
Anders

JS> For FAT32 look at
JS> http://209.67.75.168/hardware/fatgen.htm

JS> their is nothing documented for NTFS. Maybe you can look at NTFS linux
JS> development

JS> or you can use win32 API.

JS> regards
JS> jeseem

JS> ----- Original Message -----
JS> From: “Andreas Roth”
JS> To: “NT Developers Interest List”
JS> Sent: Wednesday, June 27, 2001 7:37 PM
JS> Subject: [ntdev] RE: Partition Formats

>> To format a media with FAT, take a look into the RAMDisk.c File of the NT4
>> DDK. Also Microsoft released a the FAT Specifications on their Homepage.
>>
>> A. Roth
>>
>> -----Original Message-----
>> From: xxxxx@lists.osr.com
>> [mailto:xxxxx@lists.osr.com]On Behalf Of Joe Moriarty
>> Sent: Wednesday, June 27, 2001 1:30 PM
>> To: NT Developers Interest List
>> Subject: [ntdev] Partition Formats
>>
>>
>> Has anyone seen any reference material which describes, in detail, the
JS> disk
>> format of FAT32 and NTFS? I would like to be able to create a blank
>> partition that is FAT32 or NTFS.
>>
>> Thanks In Advance,
>> Joe
>>
>>
>> —
>> You are currently subscribed to ntdev as: xxxxx@arsoft-online.de
>> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>>
>>
>> —
>> You are currently subscribed to ntdev as: xxxxx@hotmail.com
>> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>>

JS> —
JS> You are currently subscribed to ntdev as: xxxxx@flaffer.com
JS> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


Best regards,
Anders mailto:xxxxx@flaffer.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com