如何读取GHOST镜像文件分区格式
请教高人,用AU3如何读取GHOST镜像文件分区格式 $file=FileOpen("C:\Documents and Settings\Administrator\桌面\dd.gho")$i=1
While 1
$chars = FileReadLine ($file)
If StringInStr($chars,"fat32") Then
MsgBox(0, "文件格式", "GHOST镜像文件分区为FAT32")
ExitLoop
EndIf
If $i=50 Then
MsgBox(0, "文件格式", "GHOST镜像文件分区为NTFS")
ExitLoop
EndIf
$i+=1
Wend
FileClose($file) 原来这样也可以 谢谢 测试通过,多谢!
页:
[1]