Page 1 of 1
NTFS {Now discussing FAT or HPFS}
Posted: Tue Jul 25, 2006 12:23 pm
by jakelstr
Is it possible for me to impliment the NTFS into my OS?
EDIT: If it is not, then can you recomend a diff fs
Posted: Tue Jul 25, 2006 1:17 pm
by ComputerPsi
If you are just starting out then your OS is probably on a floppy. I recommend supporting the FAT system. There are much tutorials and documentations on it.
Posted: Tue Jul 25, 2006 1:27 pm
by jakelstr
Ok,
I'll save NTFS for later. I asked at osdever.net chat but no one cares.
Posted: Tue Jul 25, 2006 1:37 pm
by Shark8
Yes, you can!
As long as you have the implementation specs it'll be easy... otherwise you'll have to reverse-engineer it.
Posted: Wed Jul 26, 2006 7:53 am
by jakelstr
Hi,
would it be possible for me to modify FAT or VFAT or HPFS so that I can include support for my file indexing system?
Posted: Wed Jul 26, 2006 9:07 am
by JAAman
possible? yes, but not recommended -- if you alter the format, then it may become unreadable by other OSs, and it really isnt the same filesystem anymore
NTFS is possible, (but it is much more complicated), FAT is actually quite easy to implement (also allows the disk to be used under almost any OS -- making the disk very portable, allowing the transfer of files between OSs)
Posted: Wed Jul 26, 2006 10:32 am
by jakelstr
Ok,
I'll just do what MS tried and write a seperate indexing system.
Good enough!!
Posted: Wed Jul 26, 2006 5:15 pm
by Dex
Here is fasm code to find and load a file, from a ntfs hdd, now if you can find and load one file from ntfs, then your half way there
.
http://shade.msu.ru/~msu-se/mtldr.rar
Posted: Wed Aug 09, 2006 1:30 pm
by jakelstr
If anybody needs it, there is a doc in the cotton tail archive about this(NTFS)