Current Path: > > opt > alt > python37 > lib > python3.7 > site-packages > virtualenv > util > path
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
_pathlib | Directory | - | - | |
__init__.py | File | 401 bytes | January 02 2022 15:54:28. | |
_permission.py | File | 745 bytes | January 02 2022 15:54:28. | |
_sync.py | File | 2392 bytes | January 02 2022 15:54:28. | |
_win.py | File | 709 bytes | January 02 2022 15:54:28. |
from __future__ import absolute_import, unicode_literals import os from stat import S_IXGRP, S_IXOTH, S_IXUSR from virtualenv.util.six import ensure_text def make_exe(filename): original_mode = filename.stat().st_mode levels = [S_IXUSR, S_IXGRP, S_IXOTH] for at in range(len(levels), 0, -1): try: mode = original_mode for level in levels[:at]: mode |= level filename.chmod(mode) break except OSError: continue def set_tree(folder, stat): for root, _, files in os.walk(ensure_text(str(folder))): for filename in files: os.chmod(os.path.join(root, filename), stat) __all__ = ( "make_exe", "set_tree", )
SILENT KILLER Tool