About the Tutorial



Download 2,85 Mb.
Pdf ko'rish
bet176/234
Sana28.05.2022
Hajmi2,85 Mb.
#614232
1   ...   172   173   174   175   176   177   178   179   ...   234
Bog'liq
python3 tutorial 060821094426

Return Value 
This method returns a duplicate of file descriptor. 
Example 
The following example shows the usage of dup() method- 
#!/usr/bin/python3 
import os, sys 
# Open a file 
fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT ) 
# Get one duplicate file descriptor 
d_fd = os.dup( fd ) 
# Write one string using duplicate fd 
line="this is test"
# string needs to be converted byte object 
b=str.encode(line) 
os.write(d_fd, b) 
# Close a single opened file 
os.closerange( fd, d_fd) 


Python 3 
259 
print "Closed all the files successfully!!" 
When we run the above program, it produces the following result- 
Closed all the files successfully!! 
os.dup2() Method 
Description 
The method dup2() duplicates file descriptor fd to fd2, closing the latter first if necessary. 
Note:
New file description would be assigned only when it is available. In the following 
example given below, 1000 would be assigned as a duplicate fd in case when 1000 is 
available. 
Syntax 
Following is the syntax for dup2() method- 
os.dup2(fd, fd2) 
Parameters 

fd
- This is File descriptor to be duplicated. 

fd2
- This is Duplicate file descriptor. 
Return Value 
This method returns a duplicate of file descriptor. 
Example 
The following example shows the usage of dup2() method. 
#!/usr/bin/python3 
import os, sys 
# Open a file 
fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT ) 
# Write one string using duplicate fd 
line="this is test"
# string needs to be converted byte object 
b=str.encode(line) 


Python 3 
260 
os.write(fd, b) 
# Now duplicate this file descriptor as 1000 
fd2 = 1000 
os.dup2(fd, fd2); 
# Now read this file from the beginning using fd2. 
os.lseek(fd2, 0, 0) 
line = os.read(fd2, 100) 
str=line.decode() 
print ("Read String is : ", str) 
# Close opened file 
os.closerange( fd,fd2 ) 
print ("Closed the file successfully!!") 
When we run the above program, it produces the following result- 
Read String is : This is test 
Closed the file successfully!! 

Download 2,85 Mb.

Do'stlaringiz bilan baham:
1   ...   172   173   174   175   176   177   178   179   ...   234




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish