D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
python35
/
lib
/
python3.5
/
site-packages
/
pip
/
_vendor
/
pep517
/
Filename :
dirtools.py
back
Copy
import os import io import contextlib import tempfile import shutil import errno import zipfile @contextlib.contextmanager def tempdir(): """Create a temporary directory in a context manager.""" td = tempfile.mkdtemp() try: yield td finally: shutil.rmtree(td) def mkdir_p(*args, **kwargs): """Like `mkdir`, but does not raise an exception if the directory already exists. """ try: return os.mkdir(*args, **kwargs) except OSError as exc: if exc.errno != errno.EEXIST: raise def dir_to_zipfile(root): """Construct an in-memory zip file for a directory.""" buffer = io.BytesIO() zip_file = zipfile.ZipFile(buffer, 'w') for root, dirs, files in os.walk(root): for path in dirs: fs_path = os.path.join(root, path) rel_path = os.path.relpath(fs_path, root) zip_file.writestr(rel_path + '/', '') for path in files: fs_path = os.path.join(root, path) rel_path = os.path.relpath(fs_path, root) zip_file.write(fs_path, rel_path) return zip_file
Name
Size
Last Modified
Owner
Permissions
Actions
__pycache__
Dir
April 29 2020 6:57:11
root
0755
__init__.py
0.082
KB
April 29 2020 6:57:10
root
0755
_in_process.py
8.24
KB
April 29 2020 6:57:10
root
0755
build.py
3.257
KB
April 29 2020 6:57:10
root
0755
check.py
5.821
KB
April 29 2020 6:57:10
root
0755
colorlog.py
4.002
KB
April 29 2020 6:57:10
root
0755
compat.py
0.762
KB
April 29 2020 6:57:10
root
0755
dirtools.py
1.103
KB
April 29 2020 6:57:10
root
0755
envbuild.py
5.899
KB
April 29 2020 6:57:10
root
0755
meta.py
2.405
KB
April 29 2020 6:57:10
root
0755
wrappers.py
10.53
KB
April 29 2020 6:57:10
root
0755
2017 © D7net | D704T team