File Processing
Adalah program untuk membaca, menulis, menyimpan
sebuah data.
Ada beberapa fiile open yang memiliki beberapa command
dasar :
' r ' opening a file to be read
' w ' creating a file to be written
' rb '
opening a file (binary) to be read
' wb ' creating afile (binary) for write operation
' r+ ' opening
a file for read/write' wb ' creating afile (binary) for write operation
' w+ ' creating file for read/write
' a ' opening a file for data append
' a+ ' opening a file for read/append
No comments:
Post a Comment