-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFile handling.py
469 lines (370 loc) · 14.1 KB
/
File handling.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
'''
* As part of the programming requirement, we have to store our data permanently for future purpose.
For this requirement we have should go for files.
Types of files:
1. Text files
2. Binary files
1. Text files:
---------------
* Usally we can use use text files to store characters data.
Ex: abc.txt
2.Binary files:
---------------
* Usally we can use binary files to store binary data like images, audio, video etc.
Opening a file:
---------------
* Before performing any operation (like read or write) on the file, we have to open that file.
For this we should use pythons inbuilt function open().
* But at the time of open, we have to specify mode, which represents the purpose of opening a file.
Syntax: f = open(filename,mode)
The allowed modes in python are:
1.r==>Open an existing file for read operations. The file pointer positioned at the beginning of the file. If the specified file does not exist then we will get FileNotFoundError. This is the default mode.
2.w==>Open an existing file for write operations. If the file already contains some data then it will be overridden. If the specified file not availabe then this mode will create the file.
3.a==>Open an existing file for append operations. It wont override existing data. If the specified file is not available then this mode will create a new file.
4.r+==>To read and write data into the file. The previous data in the file will not be deleted. The file pointer is placed at the beginning of the file.
5.w+==>To write and read data. It will override existing data.
6.a+==>To append and read data from the file. It wont override existing data.
7.x==>To open a file in exclusive creating mode for write operations. If the file already exist then we will get FileExistsError.
Note:
all above modes are applicable for text files. If the above modes suffixed with 'b' then these represents for binary files.
Ex:
rb,wb,ab,r+b,w+b,a+b,xb
Closing file:
AFter completing our operations on the file, it is highly recommended to close the file. For this we have to use close() function.
f.close()
Various properties of file object:
------------------------------------------------
Once we opened a file and we got file object, we can get various details related to that file by using it's properties.
1.name:Name of the opened file.
2.mode:Mode in which the file is opened.
3.closed:Returns boolean value indicates that file is closed or not.
4.readable():Returns a boolean value indicates that whether file is readable or not.
5.writable():Returns a boolean value indicates that whether file writable or not.
Writting data to text file:
-------------------------------------
1.write(str)
2.writelines(list of lines)
'''
# Basic example :
f = open('abc.txt','w')
print('File Name:',f.name)
print('File Mode:',f.mode)
print('Is File Readable:',f.readable())
print('Is File Writable:',f.writable())
print('Is File Closed:',f.closed)
f.close()
print('Is file closed:',f.closed)
# Writing data to text file
f = open('abcd.txt','w')
f.write('Hello\n')
f.write('Good\n')
f.write('Morning\n')
f.write('All\n')
print('Data written to the file successfully')
f.close()
'''
Note:
In the above program, data present in the file will be overridden every time if we run the program.
Instead of overriding if we want to append then we should open the file as:f = open('abcd.txt','a')
'''
f = open('abcd.txt','w')
list = ['Ravi\n','Raju\n','Ramu\n']
f.writelines(list)
print('Data written to the file successfully')
f.close()
# Reading data from text file:
# 1. read(): To read all data from the file.
# ----------------------------------------------
f = open('abcd.txt','r')
data = f.read()
print(data)
f.close()
# 2. read(n): To read 'n' characters from the file.
# --------------------------------------------------
f = open('abcd.txt','r')
data = f.read(10)
print(data)
f.close()
# 3. readline(): To read only one line from the file.
# ------------------------------------------------------
f = open('abcd.txt','r')
line1 = f.readline()
line2 = f.readline()
print(line1,end='')
print(line2)
f.close()
# 4.readlines():To read all lines into a list
# -----------------------------------------------------------
f = open('abcd.txt','r')
lines = f.readlines()
print(type(lines))
for line in lines:
print(line,end='')
f.close()
'''
* with statement:
-------------------
* The with statement can be used while opening a file. we can use this to group file opeartion statement with a block.
* The advantage of with statement is it will take care closing of file, after completing all operations automatically even in explicitly.
EX:
with open('abcd.txt','w') as f:
f.write('Naresh\n')
f.write('IT\n')
f.write('Technologies')
print('Is file is closed:',f.closed)
print('Is file is closed:',f.closed)
tell() and seek()
-------------------
1.tell(): To return the current position of the file pointer.
f = open('abc.txt','r')
print(f.tell())
print(f.read(3))
print(f.tell())
2.seek(offset,from): To change the position of the file pointer.It is just like string index.
data = 'All Students Are BAD'
f = open('abc.txt','w')
f.write(data)
with open('abc.txt','r+') as f:
text = f.read()
print(text)
print('The current position:',f.tell())
f.seek(17)
print('The current position:',f.tell())
f.write('GEMS!!!!!')
f.seek(0)
text = f.read()
print('Data after modification')
print(text)
'''
with open('abcd.txt','w') as f:
f.write('Naresh\n')
f.write('IT\n')
f.write('Technologies')
print('Is file is closed:',f.closed)
print('Is file is closed:',f.closed)
# tell():
f = open('abc.txt','r')
print(f.tell())
print(f.read(3))
print(f.tell())
# seek():
data = 'All students are Bad'
f = open('abc.txt','w')
f.write(data)
with open('abc.txt','r+') as f:
text = f.read()
print(text)
print('The current position:',f.tell())
f.seek(17)
print('The current position:',f.tell())
f.write('GEMS!!!!!')
f.seek(0)
text = f.read()
print('Data after modification')
print(text)
# How to check a particular file exist or not ?
# --------------------------------------------------
# --> We can use os library to get information about files in our system.
# --> os.path.isfile(filename) returns True if file exists otherwise False.
# syntax : os.path.isfile(filename)
# Q: W.A.P to check whether the given file exists or not. If it is available then print its
import os
import sys
fname = input("Enter File Name: ")
if os.path.isfile(fname):
print("File Exists:", fname)
f = open(fname, 'r')
else:
print("File does not exist")
sys.exit(0)
print('The content of the file is:')
data = f.read()
print(data)
f.close()
# Q: W.A.P to print number of lines,words and characters present in given file ?
import os,sys
fname = input("Enter File Name:")
if os.path.isfile(fname):
print("File Exists:",fname)
f = open(fname,'r')
else:
print("File does not exist")
sys.exit(0)
lcount=wcount=ccount=0
for line in f:
lcount=lcount+1
ccount=ccount+len(line)
words=line.split()
wcount=wcount+len(words)
print('The number of lines:',lcount)
print('The number of words:',wcount)
print('The number of characters:',ccount)
# Handling Binary Data:
# ---------------------------------
# w.a.p to read image file and write to a new image file.
f1 = open('sunny.jpg','rb')
f2 = open('newpic.jpg','wb')
bytes = f1.read()
f2.write(bytes)
print('New image is available with the name:newpic.jpg')
# Handling CSV files:
# =================
# CSV==>Comma Separated Values
# To handle CSV files python provides module:csv
# Writting data to csv file:
# ------------------------------------
import csv
with open('emp.csv','w',newline='') as f:
w = csv.writer(f)#Return csv write object pointing to f
w.writerow(['ENO','ENAME','ESAL','EADDR'])
n = int(input('Enter number of employees:'))
for i in range(n):
eno = input('Enter Employee No:')
ename = input('Enter Employee Name:')
esal = input('Enter Employee Salary:')
eaddr = input('Enter Employee Address:')
w.writerow([eno,ename,esal,eaddr])
print('Total employees data written to csv file successfully.....')
# Note:Observe the difference with newline attribute and without.
# with open('emp.csv','w',newline='') as f:
# with open('emp.csv','w') as f:
# -->If we are not using newline attribute then in the csv file blank lines will be included between data. To prevent these blank lines, newline attribute is required.
# Reading data from csv file:
# ----------------------------------------
import csv
f = open('emp.csv','r')
r = csv.reader(f)#Returns csv reader object
print(type(r))
data = list(r)
for line in data:
for word in line:
print(word,'\t',end='')
print()
# Zipping and Unzipping files:
# -----------------------------------------
# -->The main advantages are:
# 1).To improve memory utilization.
# 2).We can reduce transport time.
# 3).We can improve performance.
# -->To perform zip and unzip operations, python contains one in-built module zipfile. This module contains ZipFile class.
# To create zip file:
# --------------------------
# -->We have to create ZipFile class object with name of the zip file, mode and constant ZIP_DEFLATED. This constant represents we are creating zip file.
# f = ZipFile('files.zip','w',ZIP_DEFLATED)
# -->Once we created ZipFile object, we can add files by using write() method.
# f.write(filename)
from zipfile import *
f = ZipFile('files.zip','w',ZIP_DEFLATED)
f.write('cricketers.txt')
f.write('heroes.txt')
f.write('social.txt')
print('files.zip file created successfully.....')
# To perform unzip operation:
# ------------------------------------------
# -->We have to create ZipFile object as:
# f = ZipFile('files.zip','r',ZIP_STORED)
# -->ZIP_STORED represents unzip operation. This is the default value and hence we are not required to specify.
# -->Once we create ZIpFile object for unzip operation, we can get all file names present in that zip file by using namelist() method.
# names = f.namelist()
from zipfile import *
f = ZipFile('files.zip','r',ZIP_STORED)
f.extractall()
names = f.namelist()
print(names)
for name in names:
print('File Name:',name)
print('The content in the file is:')
f1 = open(name,'r')
print(f1.read())
print()
# Working with directories:
# -------------------------------------
# -->To know the current working directory.
# -->To create a new directory.
# -->To remove an existing directory.
# -->To rename a directory.
# -->To list content of directory.
# etc.............
# To perform these operations python provides in-built module:os, which contains several methods to perform directory related operations.
# Q.To know the current working directory
# --------------------------------------------------------------
import os
cwd = os.getcwd()
print('Current working directory:',cwd)
# Q.To create a sub directory in the current working directory
# -----------------------------------------------------------------------------------------
import os
os.mkdir('sunny')
print('My sub dir created cwd')
# Q.To create sub dir in sunny dir
# ------------------------------------------------
import os
os.mkdir('sunny/bunny')
print('My sub dir created inside sunny')
# Q.To create multiple dirs like sub1 in that sub2 in that sub3
# -----------------------------------------------------------------------------------------
import os
os.makedirs('sub1/sub2/sub3')
print('sub1 sub2 sub3 dirs created')
# Q.To remove a directory
# -------------------------------------
import os
os.rmdir('sunny/bunny')
print('bunny was deleted')
# Q.To remove sub directories
# ------------------------------------------
import os
os.removedirs('sub1/sub2/sub3')
print('All 3- directories sub1,sub2,sub3 removed')
# Q.To rename a directory
# -------------------------------------
import os
os.rename('sunny','bunny')
print('sunny renamed as bunny')
# Q.To know content of directory?
# ------------------------------------------------
# We can use listdir() to list out the contents of the specified directory. It won't display the content of sub directory.
import os
print(os.listdir('.'))
# -->If we want the content of a directory including sub directories then we should go for walk() function.
# Ex:To display all contents of current directory including sub dirs.
# --------------------------------------------------------------------------------------------------
import os
for dirpath,dirnames,filenames in os.walk('.'):
print('Current directory path:',dirpath)
print('Directories:',dirnames)
print('Files:',filenames)
print()
# Note:
# To display contents of a particular directory, we have to provide that directory name as argument to walk() function.
# os.walk('dirname')
# Q.What is the difference between listdir() and walk() functions?
# ---------------------------------------------------------------------------------------------
# In case of listdir(), we will get contents of specified directory but not sub directory contents. But in the case of walk() function we will get contents of specified directory and it's sub sirectories also.
# Running other programs from the python program
# ----------------------------------------------------------------------------
# -->os module contains system() function to run the programs and commands.
# -->It is exactly same as system() function in C-Language.
# Syn:
# os.system('command string')
# -->The argument is any command which is executing from DOS.
import os
os.system('dir *.py')
os.system('py test1.py')
# How to get information about file:
# ---------------------------------------------------
# We can get statistics of a file like size, last accessed time, last modified time etc..by using stat() function of os module.
import os
stats = os.stat('abc.txt')
print(stats)
# Note:
# st_atime,st_mtime and st_ctime returns the time as number of milliseconds since Jan 1st 1970, 12:00AM(Epoche Time Standard). By using datetime module fromtimestamp() function, we can get exact date and time.
# Ex:To print specified properties
# ------------------------------------------------
import os
from datetime import *
stats = os.stat('abc.txt')
print('File Size in Bytes:',stats.st_size)
print('File Last Accessed Time:',datetime.fromtimestamp(stats.st_atime))
print('File Last Modified Time:',datetime.fromtimestamp(stats.st_mtime))
# Pickling and Unpickling of objects?