m.au3 310 B

1234567891011121314151617
  1. func m($filepath_t)
  2. local $src=$filepath_t
  3. local $hhw
  4. local $arr[0]
  5. _FileReadToArray($src,$arr)
  6. ConsoleWrite($arr)
  7. $scc=_FileCreate($filepath_t)
  8. $hhw=FileOpen($filepath_t,128)
  9. ConsoleWrite($scc)
  10. _ArrayDelete($arr,0)
  11. _ArrayDelete($arr,1)
  12. _FileWriteFromArray($filepath_t,$arr)
  13. FileClose($hhw)
  14. EndFunc