1 / 4

Files in Pseudocode

Files in Pseudocode. Prepared by: Careene McCallum-Rodney. Append to file example. OPEN FILE "loginInfo.txt" in APPEND mode IF "loginInfo.txt" NOT OPEN THEN PRINT "File cannot open“ ELSE FILE WRITE user[c].username, user[c].password ENDIF

Download Presentation

Files in Pseudocode

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Files in Pseudocode Prepared by: Careene McCallum-Rodney

  2. Append to file example OPEN FILE "loginInfo.txt" in APPEND mode IF "loginInfo.txt" NOT OPEN THEN PRINT "File cannot open“ ELSE FILE WRITE user[c].username, user[c].password ENDIF CLOSE FILE "loginInfo.txt“

  3. Write to file example OPEN FILE "loginInfo.txt" in WRITE mode IF "loginInfo.txt" NOT OPEN THEN PRINT "File cannot open“ ELSE FOR c = 0 TO numUsers-1 DO FILE WRITE user[c].username, user[c].password ENDFOR ENDIF CLOSE FILE "loginInfo.txt“

  4. Read from file example • OPEN FILE "loginInfo.txt" in READ mode • IF "loginInfo.txt" NOT OPENED THEN • PRINT "File cannot open" • ELSE • FOR c = 0 TO numUsers-1 DO • FILE READ user[c].username, user[c].password • ENDFOR • ENDIF • CLOSE FILE "loginInfo.txt"

More Related