Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
a2baf46c
Kaydet (Commit)
a2baf46c
authored
Nis 29, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Reindented at 4 spaces.
üst
5980845b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
49 deletions
+49
-49
shutil.py
Lib/shutil.py
+49
-49
No files found.
Lib/shutil.py
Dosyayı görüntüle @
a2baf46c
...
...
@@ -10,75 +10,75 @@ MODEBITS = 010000 # Lower 12 mode bits
# Copy data from src to dst
#
def
copyfile
(
src
,
dst
):
fsrc
=
None
fdst
=
None
try
:
fsrc
=
open
(
src
,
'rb'
)
fdst
=
open
(
dst
,
'wb'
)
while
1
:
buf
=
fsrc
.
read
(
16
*
1024
)
if
not
buf
:
break
fdst
.
write
(
buf
)
finally
:
if
fdst
:
fdst
.
close
()
if
fsrc
:
fsrc
.
close
()
fsrc
=
None
fdst
=
None
try
:
fsrc
=
open
(
src
,
'rb'
)
fdst
=
open
(
dst
,
'wb'
)
while
1
:
buf
=
fsrc
.
read
(
16
*
1024
)
if
not
buf
:
break
fdst
.
write
(
buf
)
finally
:
if
fdst
:
fdst
.
close
()
if
fsrc
:
fsrc
.
close
()
# Copy mode bits from src to dst
#
def
copymode
(
src
,
dst
):
st
=
os
.
stat
(
src
)
mode
=
divmod
(
st
[
0
],
MODEBITS
)[
1
]
os
.
chmod
(
dst
,
mode
)
st
=
os
.
stat
(
src
)
mode
=
divmod
(
st
[
0
],
MODEBITS
)[
1
]
os
.
chmod
(
dst
,
mode
)
# Copy all stat info (mode bits, atime and mtime) from src to dst
#
def
copystat
(
src
,
dst
):
st
=
os
.
stat
(
src
)
mode
=
divmod
(
st
[
0
],
MODEBITS
)[
1
]
os
.
chmod
(
dst
,
mode
)
os
.
utime
(
dst
,
st
[
7
:
9
])
st
=
os
.
stat
(
src
)
mode
=
divmod
(
st
[
0
],
MODEBITS
)[
1
]
os
.
chmod
(
dst
,
mode
)
os
.
utime
(
dst
,
st
[
7
:
9
])
# Copy data and mode bits ("cp src dst").
# Support directory as target.
#
def
copy
(
src
,
dst
):
if
os
.
path
.
isdir
(
dst
):
dst
=
os
.
path
.
join
(
dst
,
os
.
path
.
basename
(
src
))
copyfile
(
src
,
dst
)
copymode
(
src
,
dst
)
if
os
.
path
.
isdir
(
dst
):
dst
=
os
.
path
.
join
(
dst
,
os
.
path
.
basename
(
src
))
copyfile
(
src
,
dst
)
copymode
(
src
,
dst
)
# Copy data and all stat info ("cp -p src dst").
# Support directory as target.
#
def
copy2
(
src
,
dst
):
if
os
.
path
.
isdir
(
dst
):
dst
=
os
.
path
.
join
(
dst
,
os
.
path
.
basename
(
src
))
copyfile
(
src
,
dst
)
copystat
(
src
,
dst
)
if
os
.
path
.
isdir
(
dst
):
dst
=
os
.
path
.
join
(
dst
,
os
.
path
.
basename
(
src
))
copyfile
(
src
,
dst
)
copystat
(
src
,
dst
)
# Recursively copy a directory tree.
# The destination must not already exist.
#
def
copytree
(
src
,
dst
):
names
=
os
.
listdir
(
src
)
os
.
mkdir
(
dst
,
0777
)
for
name
in
names
:
srcname
=
os
.
path
.
join
(
src
,
name
)
dstname
=
os
.
path
.
join
(
dst
,
name
)
#print 'Copying', srcname, 'to', dstname
try
:
#if os.path.islink(srcname):
# linkto = os.readlink(srcname)
# os.symlink(linkto, dstname)
#elif os.path.isdir(srcname):
if
os
.
path
.
isdir
(
srcname
):
copytree
(
srcname
,
dstname
)
else
:
copy2
(
srcname
,
dstname
)
# XXX What about devices, sockets etc.?
except
os
.
error
,
why
:
print
'Could not copy'
,
srcname
,
'to'
,
dstname
,
print
'('
,
why
[
1
],
')'
names
=
os
.
listdir
(
src
)
os
.
mkdir
(
dst
,
0777
)
for
name
in
names
:
srcname
=
os
.
path
.
join
(
src
,
name
)
dstname
=
os
.
path
.
join
(
dst
,
name
)
#print 'Copying', srcname, 'to', dstname
try
:
#if os.path.islink(srcname):
# linkto = os.readlink(srcname)
# os.symlink(linkto, dstname)
#elif os.path.isdir(srcname):
if
os
.
path
.
isdir
(
srcname
):
copytree
(
srcname
,
dstname
)
else
:
copy2
(
srcname
,
dstname
)
# XXX What about devices, sockets etc.?
except
os
.
error
,
why
:
print
'Could not copy'
,
srcname
,
'to'
,
dstname
,
print
'('
,
why
[
1
],
')'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment