Mode | Details |
---|---|
read() | Reading content of a file |
readable() | Check if file is readable or not |
write() | Write content to file |
seek() | Move the file pointer to different location inside the file |
seekable() | Check if file is seekable or not |
tell() | Get the position of the file pointer |
readlines() | Getting a list from the content of a file |
readline() | Reading line of data from a file |
truncate() | Resize a file upto the input bytes |
writable() | Check if the file is writable or not |
writelines() | Writing list to file |