11.10. shutil
— Operações de arquivo de alto nível¶
Código Fonte: Lib/shutil.py
O módulo shutil
oferece várias operações de alto nível em arquivos e coleções de arquivos. Em particular, são fornecidas funções que possuem suporte a cópia e remoção de arquivos. Para operações em arquivos individuais, veja também o módulo os
.
Aviso
Mesmo as funções de cópia de arquivos de nível superior (shutil.copy()
, shutil.copy2()
) não podem copiar todos os metadados do arquivo.
Nas plataformas POSIX, isso significa que o proprietário e o grupo do arquivo são perdidos, bem como as ACLs. No Mac OS, a bifurcação de recursos e outros metadados não são usados. Isso significa que os recursos serão perdidos e o tipo de arquivo e os códigos do criador não estarão corretos. No Windows, os proprietários de arquivos, ACLs e fluxos de dados alternativos não são copiados.
11.10.1. Operações de diretório e arquivos¶
-
shutil.
copyfileobj
(fsrc, fdst[, length])¶ Copia o conteúdo do objeto do tipo arquivo fsrc para o objeto do tipo arquivo fdst. O número inteiro length, se fornecido, é o tamanho do buffer. Em particular, um valor negativo length significa copiar os dados sem repetir os dados de origem em pedaços; por padrão, os dados são lidos em pedaços para evitar o consumo descontrolado de memória. Observe que, se a posição atual do arquivo do objeto fsrc não for 0, apenas o conteúdo da posição atual do arquivo até o final do arquivo será copiado.
-
shutil.
copyfile
(src, dst, *, follow_symlinks=True)¶ Copy the contents (no metadata) of the file named src to a file named dst and return dst. src and dst are path names given as strings. dst must be the complete target file name; look at
shutil.copy()
for a copy that accepts a target directory path. If src and dst specify the same file,SameFileError
is raised.O local de destino deve ser gravável; caso contrário, uma exceção
OSError
será gerada. Se o dst já existir, ele será substituído. Arquivos especiais como dispositivos de caractere ou bloco e tubulações não podem ser copiados com esta função.Se follow_symlinks for falso e src for um link simbólico, um novo link simbólico será criado em vez de copiar o arquivo src para o qual o arquivo aponta.
Alterado na versão 3.3:
IOError
costumava ser gerada em vez deOSError
. Adicionado argumento follow_symlinks. Agora retorna dst.Alterado na versão 3.4: Levanta
SameFileError
em vez deError
. Como a primeira é uma subclasse da última, essa alteração é compatível com versões anteriores.
-
exception
shutil.
SameFileError
¶ Essa exceção é gerada se a origem e o destino em
copyfile()
forem o mesmo arquivo.Novo na versão 3.4.
-
shutil.
copymode
(src, dst, *, follow_symlinks=True)¶ Copy the permission bits from src to dst. The file contents, owner, and group are unaffected. src and dst are path names given as strings. If follow_symlinks is false, and both src and dst are symbolic links,
copymode()
will attempt to modify the mode of dst itself (rather than the file it points to). This functionality is not available on every platform; please seecopystat()
for more information. Ifcopymode()
cannot modify symbolic links on the local platform, and it is asked to do so, it will do nothing and return.Alterado na versão 3.3: Adicionado argumento follow_symlinks.
-
shutil.
copystat
(src, dst, *, follow_symlinks=True)¶ Copy the permission bits, last access time, last modification time, and flags from src to dst. On Linux,
copystat()
also copies the “extended attributes” where possible. The file contents, owner, and group are unaffected. src and dst are path names given as strings.Se follow_symlinks for falso e src e dst se referirem a links simbólicos,
copystat()
operará nos próprios links simbólicos, e não nos arquivos aos quais os links simbólicos se referem - lendo as informações do link simbólico src e gravando as informações no link simbólico dst.Nota
Nem todas as plataformas oferecem a capacidade de examinar e modificar links simbólicos. O próprio Python pode dizer qual funcionalidade está disponível localmente.
- Se
os.chmod in os.supports_follow_symlinks
forTrue
,copystat()
pode modificar os bits de permissão de um link simbólico. - Se
os.utime in os.supports_follow_symlinks
forTrue
,copystat()
pode modificar as horas da última modificação e do último acesso de um link simbólico. - Se
os.chflags in os.supports_follow_symlinks
forTrue
,copystat()
pode modificar os sinalizadores de um link simbólico. (os.chflags
não está disponível em todas as plataformas.)
Nas plataformas em que algumas ou todas essas funcionalidades não estão disponíveis, quando solicitado a modificar um link simbólico,
copystat()
copiará tudo o que puder.copystat()
nunca retorna falha.Por favor, veja
os.supports_follow_symlinks
para mais informações.Alterado na versão 3.3: Adicionado argumento follow_symlinks e suporte a atributos estendidos do Linux.
- Se
-
shutil.
copy
(src, dst, *, follow_symlinks=True)¶ Copia o arquivo src ao arquivo ou diretório dst. src e dst devem ser strings. Se dst especificar um diretório, o arquivo será copiado para dst usando o nome do arquivo base de src. Retorna o caminho para o arquivo recém-criado.
Se follow_symlinks for falso e src for um link simbólico, dst será criado como um link simbólico. Se follow_symlinks for verdadeiro e src for um link simbólico, dst será uma cópia do arquivo ao qual src se refere.
copy()
copia os dados do arquivo e o modo de permissão do arquivo (consulteos.chmod()
). Outros metadados, como os tempos de criação e modificação do arquivo, não são preservados. Para preservar todos os metadados do arquivo do original, usecopy2()
.Alterado na versão 3.3: Adicionado argumento follow_symlinks. Agora retorna o caminho para o arquivo recém-criado.
-
shutil.
copy2
(src, dst, *, follow_symlinks=True)¶ Identical to
copy()
except thatcopy2()
also attempts to preserve all file metadata.When follow_symlinks is false, and src is a symbolic link,
copy2()
attempts to copy all metadata from the src symbolic link to the newly-created dst symbolic link. However, this functionality is not available on all platforms. On platforms where some or all of this functionality is unavailable,copy2()
will preserve all the metadata it can;copy2()
never returns failure.copy2()
usacopystat()
para copiar os metadados do arquivo. Por favor, vejacopystat()
para obter mais informações sobre o suporte da plataforma para modificar os metadados do link simbólico.Alterado na versão 3.3: Adicionado argumento follow_symlinks, tenta copiar também atributos estendidos do sistema de arquivos (atualmente apenas no Linux). Agora retorna o caminho para o arquivo recém-criado.
-
shutil.
ignore_patterns
(*patterns)¶ Esta função de fábrica cria uma função que pode ser usada como um chamável para o argumento ignore de
copytree()
, ignorando arquivos e diretórios que correspondem a um dos patterns de estilo glob fornecidos. Veja o exemplo abaixo.
-
shutil.
copytree
(src, dst, symlinks=False, ignore=None, copy_function=copy2, ignore_dangling_symlinks=False)¶ Recursively copy an entire directory tree rooted at src, returning the destination directory. The destination directory, named by dst, must not already exist; it will be created as well as missing parent directories. Permissions and times of directories are copied with
copystat()
, individual files are copied usingshutil.copy2()
.Se symlinks for verdadeiro, os links simbólicos na árvore de origem são representados como links simbólicos na nova árvore e os metadados dos links originais serão copiados na medida do permitido pela plataforma; se falso ou omitido, o conteúdo e os metadados dos arquivos vinculados são copiados para a nova árvore.
Quando symlinks for falso, se o arquivo apontado pelo link simbólico não existir, uma exceção será adicionada na lista de erros gerados em uma exceção
Error
no final do processo de cópia. Você pode definir o sinalizador opcional ignore_dangling_symlinks como true se desejar silenciar esta exceção. Observe que esta opção não tem efeito em plataformas que não possuem suporte aos.symlink()
.Se ignore for fornecido, deve ser um chamável que receberá como argumento o diretório que está sendo visitado por
copytree()
, e uma lista de seu conteúdo, retornada poros.listdir()
. Comocopytree()
é chamada recursivamente, o chamável ignore será chamado uma vez para cada diretório que é copiado. O chamável deve retornar uma sequência de nomes de diretório e arquivo em relação ao diretório atual (ou seja, um subconjunto dos itens em seu segundo argumento); esses nomes serão ignorados no processo de cópia.ignore_patterns()
pode ser usado para criar um chamável que ignore nomes com base em padrões de estilo glob.Se uma ou mais exceções ocorrerem, uma
Error
é levantada com uma lista dos motivos.If copy_function is given, it must be a callable that will be used to copy each file. It will be called with the source path and the destination path as arguments. By default,
shutil.copy2()
is used, but any function that supports the same signature (likeshutil.copy()
) can be used.Alterado na versão 3.3: Copia metadados quando symlinks for falso. Agora, retorna dst.
Alterado na versão 3.2: Adicionado o argumento copy_function para poder fornecer uma função de cópia personalizada. Adicionado o argumento ignore_dangling_symlinks para erros silenciosos de links simbólicos quando symlinks for falso.
-
shutil.
rmtree
(path, ignore_errors=False, onerror=None)¶ Exclui uma árvore de diretório inteira; path deve apontar para um diretório (mas não um link simbólico para um diretório). Se ignore_errors for verdadeiro, os erros resultantes de remoções com falha serão ignorados; se falso ou omitido, tais erros são tratados chamando um manipulador especificado por onerror ou, se for omitido, eles levantam uma exceção.
Nota
Em plataformas que suportam as funções baseadas em descritores de arquivo necessárias, uma versão resistente a ataques de links simbólicos de
rmtree()
é usada por padrão. Em outras plataformas, a implementaçãormtree()
é suscetível a um ataque de link simbólico: dados o tempo e as circunstâncias apropriados, os invasores podem manipular links simbólicos no sistema de arquivos para excluir arquivos que eles não seriam capazes de acessar de outra forma. Os aplicativos podem usar o atributo de funçãormtree.avoids_symlink_attacks
para determinar qual caso se aplica.Se onerror for fornecido, deve ser um chamável que aceite três parâmetros: function, path, e excinfo.
O primeiro parâmetro, function, é a função que levantou a exceção; depende da plataforma e da implementação. O segundo parâmetro, path, será o nome do caminho passado para a função. O terceiro parâmetro, excinfo, será a informação de exceção retornada por
sys.exc_info()
. As exceções levantadas por onerror não serão detectadas.Alterado na versão 3.3: Adicionada uma versão resistente a ataques de link simbólico que é usada automaticamente se a plataforma suportar funções baseadas em descritor de arquivo.
-
shutil.
move
(src, dst, copy_function=copy2)¶ Move recursivamente um arquivo ou diretório (src) para outro local (dst) e retorna ao destino.
Se o destino for um diretório existente, src será movido para dentro desse diretório. Se o destino já existe, mas não é um diretório, ele pode ser sobrescrito dependendo da semântica
os.rename()
.Se o destino está no sistema de arquivos atual, então
os.rename()
é usado. Caso contrário, src é copiado para dst usando copy_function e depois removido. No caso de links simbólicos, um novo link simbólico apontando para o destino de src será criado em ou conforme dst e src serão removidos.If copy_function is given, it must be a callable that takes two arguments src and dst, and will be used to copy src to dest if
os.rename()
cannot be used. If the source is a directory,copytree()
is called, passing it thecopy_function()
. The default copy_function iscopy2()
. Usingcopy()
as the copy_function allows the move to succeed when it is not possible to also copy the metadata, at the expense of not copying any of the metadata.Alterado na versão 3.3: Adicionada manipulação de links simbólicos explícitos para sistemas de arquivos externos, adaptando-os ao comportamento do GNU mv. Agora retorna dst.
Alterado na versão 3.5: Adicionado o argumento nomeado copy_function.
-
shutil.
disk_usage
(path)¶ Return disk usage statistics about the given path as a named tuple with the attributes total, used and free, which are the amount of total, used and free space, in bytes.
Novo na versão 3.3.
Disponibilidade: Unix, Windows.
-
shutil.
chown
(path, user=None, group=None)¶ Change owner user and/or group of the given path.
user can be a system user name or a uid; the same applies to group. At least one argument is required.
See also
os.chown()
, the underlying function.Disponibilidade: Unix.
Novo na versão 3.3.
-
shutil.
which
(cmd, mode=os.F_OK | os.X_OK, path=None)¶ Return the path to an executable which would be run if the given cmd was called. If no cmd would be called, return
None
.mode is a permission mask passed to
os.access()
, by default determining if the file exists and executable.When no path is specified, the results of
os.environ()
are used, returning either the “PATH” value or a fallback ofos.defpath
.On Windows, the current directory is always prepended to the path whether or not you use the default or provide your own, which is the behavior the command shell uses when finding executables. Additionally, when finding the cmd in the path, the
PATHEXT
environment variable is checked. For example, if you callshutil.which("python")
,which()
will searchPATHEXT
to know that it should look forpython.exe
within the path directories. For example, on Windows:>>> shutil.which("python") 'C:\\Python33\\python.EXE'
Novo na versão 3.3.
-
exception
shutil.
Error
¶ This exception collects exceptions that are raised during a multi-file operation. For
copytree()
, the exception argument is a list of 3-tuples (srcname, dstname, exception).
11.10.1.1. copytree example¶
This example is the implementation of the copytree()
function, described
above, with the docstring omitted. It demonstrates many of the other functions
provided by this module.
def copytree(src, dst, symlinks=False):
names = os.listdir(src)
os.makedirs(dst)
errors = []
for name in names:
srcname = os.path.join(src, name)
dstname = os.path.join(dst, name)
try:
if symlinks and os.path.islink(srcname):
linkto = os.readlink(srcname)
os.symlink(linkto, dstname)
elif os.path.isdir(srcname):
copytree(srcname, dstname, symlinks)
else:
copy2(srcname, dstname)
# XXX What about devices, sockets etc.?
except OSError as why:
errors.append((srcname, dstname, str(why)))
# catch the Error from the recursive copytree so that we can
# continue with other files
except Error as err:
errors.extend(err.args[0])
try:
copystat(src, dst)
except OSError as why:
# can't copy file access times on Windows
if why.winerror is None:
errors.extend((src, dst, str(why)))
if errors:
raise Error(errors)
Another example that uses the ignore_patterns()
helper:
from shutil import copytree, ignore_patterns
copytree(source, destination, ignore=ignore_patterns('*.pyc', 'tmp*'))
This will copy everything except .pyc
files and files or directories whose
name starts with tmp
.
Another example that uses the ignore argument to add a logging call:
from shutil import copytree
import logging
def _logpath(path, names):
logging.info('Working in %s' % path)
return [] # nothing will be ignored
copytree(source, destination, ignore=_logpath)
11.10.1.2. exemplo rmtree¶
This example shows how to remove a directory tree on Windows where some of the files have their read-only bit set. It uses the onerror callback to clear the readonly bit and reattempt the remove. Any subsequent failure will propagate.
import os, stat
import shutil
def remove_readonly(func, path, _):
"Clear the readonly bit and reattempt the removal"
os.chmod(path, stat.S_IWRITE)
func(path)
shutil.rmtree(directory, onerror=remove_readonly)
11.10.2. Archiving operations¶
Novo na versão 3.2.
Alterado na versão 3.5: Added support for the xztar format.
High-level utilities to create and read compressed and archived files are also
provided. They rely on the zipfile
and tarfile
modules.
-
shutil.
make_archive
(base_name, format[, root_dir[, base_dir[, verbose[, dry_run[, owner[, group[, logger]]]]]]])¶ Create an archive file (such as zip or tar) and return its name.
base_name is the name of the file to create, including the path, minus any format-specific extension. format is the archive format: one of “zip” (if the
zlib
module is available), “tar”, “gztar” (if thezlib
module is available), “bztar” (if thebz2
module is available), or “xztar” (if thelzma
module is available).root_dir is a directory that will be the root directory of the archive; for example, we typically chdir into root_dir before creating the archive.
base_dir is the directory where we start archiving from; i.e. base_dir will be the common prefix of all files and directories in the archive.
root_dir and base_dir both default to the current directory.
If dry_run is true, no archive is created, but the operations that would be executed are logged to logger.
owner and group are used when creating a tar archive. By default, uses the current owner and group.
logger must be an object compatible with PEP 282, usually an instance of
logging.Logger
.The verbose argument is unused and deprecated.
-
shutil.
get_archive_formats
()¶ Return a list of supported formats for archiving. Each element of the returned sequence is a tuple
(name, description)
.By default
shutil
provides these formats:- zip: ZIP file (if the
zlib
module is available). - tar: arquivo tar não comprimido.
- gztar: gzip’ed tar-file (if the
zlib
module is available). - bztar: bzip2’ed tar-file (if the
bz2
module is available). - xztar: xz’ed tar-file (if the
lzma
module is available).
You can register new formats or provide your own archiver for any existing formats, by using
register_archive_format()
.- zip: ZIP file (if the
-
shutil.
register_archive_format
(name, function[, extra_args[, description]])¶ Register an archiver for the format name.
function is the callable that will be used to unpack archives. The callable will receive the base_name of the file to create, followed by the base_dir (which defaults to
os.curdir
) to start archiving from. Further arguments are passed as keyword arguments: owner, group, dry_run and logger (as passed inmake_archive()
).If given, extra_args is a sequence of
(name, value)
pairs that will be used as extra keywords arguments when the archiver callable is used.description is used by
get_archive_formats()
which returns the list of archivers. Defaults to an empty string.
-
shutil.
unregister_archive_format
(name)¶ Remove the archive format name from the list of supported formats.
-
shutil.
unpack_archive
(filename[, extract_dir[, format]])¶ Unpack an archive. filename is the full path of the archive.
extract_dir is the name of the target directory where the archive is unpacked. If not provided, the current working directory is used.
format is the archive format: one of “zip”, “tar”, “gztar”, “bztar”, or “xztar”. Or any other format registered with
register_unpack_format()
. If not provided,unpack_archive()
will use the archive file name extension and see if an unpacker was registered for that extension. In case none is found, aValueError
is raised.
-
shutil.
register_unpack_format
(name, extensions, function[, extra_args[, description]])¶ Registers an unpack format. name is the name of the format and extensions is a list of extensions corresponding to the format, like
.zip
for Zip files.function is the callable that will be used to unpack archives. The callable will receive the path of the archive, followed by the directory the archive must be extracted to.
When provided, extra_args is a sequence of
(name, value)
tuples that will be passed as keywords arguments to the callable.description can be provided to describe the format, and will be returned by the
get_unpack_formats()
function.
-
shutil.
unregister_unpack_format
(name)¶ Unregister an unpack format. name is the name of the format.
-
shutil.
get_unpack_formats
()¶ Return a list of all registered formats for unpacking. Each element of the returned sequence is a tuple
(name, extensions, description)
.By default
shutil
provides these formats:- zip: ZIP file (unpacking compressed files works only if the corresponding module is available).
- tar: arquivo tar não comprimido.
- gztar: gzip’ed tar-file (if the
zlib
module is available). - bztar: bzip2’ed tar-file (if the
bz2
module is available). - xztar: xz’ed tar-file (if the
lzma
module is available).
You can register new formats or provide your own unpacker for any existing formats, by using
register_unpack_format()
.
11.10.2.1. Exemplo de arquivo¶
In this example, we create a gzip’ed tar-file archive containing all files
found in the .ssh
directory of the user:
>>> from shutil import make_archive
>>> import os
>>> archive_name = os.path.expanduser(os.path.join('~', 'myarchive'))
>>> root_dir = os.path.expanduser(os.path.join('~', '.ssh'))
>>> make_archive(archive_name, 'gztar', root_dir)
'/Users/tarek/myarchive.tar.gz'
The resulting archive contains:
$ tar -tzvf /Users/tarek/myarchive.tar.gz
drwx------ tarek/staff 0 2010-02-01 16:23:40 ./
-rw-r--r-- tarek/staff 609 2008-06-09 13:26:54 ./authorized_keys
-rwxr-xr-x tarek/staff 65 2008-06-09 13:26:54 ./config
-rwx------ tarek/staff 668 2008-06-09 13:26:54 ./id_dsa
-rwxr-xr-x tarek/staff 609 2008-06-09 13:26:54 ./id_dsa.pub
-rw------- tarek/staff 1675 2008-06-09 13:26:54 ./id_rsa
-rw-r--r-- tarek/staff 397 2008-06-09 13:26:54 ./id_rsa.pub
-rw-r--r-- tarek/staff 37192 2010-02-06 18:23:10 ./known_hosts
11.10.3. Querying the size of the output terminal¶
-
shutil.
get_terminal_size
(fallback=(columns, lines))¶ Get the size of the terminal window.
For each of the two dimensions, the environment variable,
COLUMNS
andLINES
respectively, is checked. If the variable is defined and the value is a positive integer, it is used.When
COLUMNS
orLINES
is not defined, which is the common case, the terminal connected tosys.__stdout__
is queried by invokingos.get_terminal_size()
.If the terminal size cannot be successfully queried, either because the system doesn’t support querying, or because we are not connected to a terminal, the value given in
fallback
parameter is used.fallback
defaults to(80, 24)
which is the default size used by many terminal emulators.The value returned is a named tuple of type
os.terminal_size
.See also: The Single UNIX Specification, Version 2, Other Environment Variables.
Novo na versão 3.3.