|
光纤硬盘520字节每扇区转换成512字节每扇区winhex脚本
该脚本运行慢,无实用价值,但有一定的学习研究价值。论坛上有样本,可以体验一下。520to512:
turbo on
Assign FileSize GetSize
Assign Pagecount ((filesize/520)-1)
goto 0
read MyVariable 512
Create "D:\My File.txt" 0
write MyVariable
{
nextobj
move 8
read MyVariable 512
nextobj
write MyVariable
}[Pagecount]
save
MessageBox "完成"
turbo off |
|