somdcomputerguy

OTP

Dec 16th, 2023 (edited)
2,848
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.33 KB | Source Code | 0 0
  1. #include <File.au3>
  2. #include <Array.au3>
  3. Local $aRecords, $aLastLine
  4. _FileReadToArray("z:\xampp\htdocs\somemore.txt", $aRecords)
  5. $aLastLine = _ArrayPop($aRecords) ;Returns the last element, deletes it from the array
  6. _FileWriteFromArray("z:\xampp\htdocs\somemore.txt", $aRecords, 1) ; write it back..
  7. MsgBox(0, "OTP", $aLastLine)
Advertisement
Add Comment
Please, Sign In to add comment