Дипломная работа: Програма для роботи з файловою системою

fseek(fd,-2,SEEK_END);

fread(buffer,2,1,fd);

fseek(fd,0,SEEK_SET);

fwrite(buffer,2,1,fd);

fclose(fd);

handle=open(fname,O_RDWR);

chsize(handle,(filelength(handle))-2);

close(handle);

}

Модуль, який пише та читає інформацію напряму в ділянку диску без звертання до FAT системи

include common.mac

text segment use16

assume CS:text, DS:text

org 256

myproc proc

mov AH,09h ;printing function

printf g ;print g

printf g1 ;print g1

;parse the command line...

getf guff ;guff will have the command line

;is the command line empty?

cmp guff[0], 0

je expl

;is the command line starting with ?

cmp guff[0], '?'

je expl

;we are reading the disk

cmp guff[0], '^'

je readdisk

К-во Просмотров: 396
Бесплатно скачать Дипломная работа: Програма для роботи з файловою системою