X7ROOT File Manager
Current Path:
/opt/alt/python39/lib/python3.9/site-packages/setuptools
opt
/
alt
/
python39
/
lib
/
python3.9
/
site-packages
/
setuptools
/
ðŸ“
..
📄
__init__.py
(7.49 KB)
ðŸ“
__pycache__
📄
_deprecation_warning.py
(218 B)
ðŸ“
_distutils
📄
_imp.py
(2.34 KB)
ðŸ“
_vendor
📄
archive_util.py
(6.91 KB)
📄
build_meta.py
(10.04 KB)
ðŸ“
command
📄
config.py
(22.58 KB)
📄
dep_util.py
(949 B)
📄
depends.py
(5.35 KB)
📄
dist.py
(42.08 KB)
📄
errors.py
(524 B)
📄
extension.py
(1.64 KB)
ðŸ“
extern
📄
glob.py
(4.76 KB)
📄
installer.py
(3.48 KB)
📄
launch.py
(812 B)
📄
monkey.py
(5.09 KB)
📄
msvc.py
(49.38 KB)
📄
namespaces.py
(3.02 KB)
📄
package_index.py
(38.95 KB)
📄
py34compat.py
(245 B)
📄
sandbox.py
(14.01 KB)
📄
script (dev).tmpl
(218 B)
📄
script.tmpl
(138 B)
📄
unicode_utils.py
(941 B)
📄
version.py
(144 B)
📄
wheel.py
(8.09 KB)
📄
windows_support.py
(714 B)
Editing: windows_support.py
import platform import ctypes def windows_only(func): if platform.system() != 'Windows': return lambda *args, **kwargs: None return func @windows_only def hide_file(path): """ Set the hidden attribute on a file or directory. From http://stackoverflow.com/questions/19622133/ `path` must be text. """ __import__('ctypes.wintypes') SetFileAttributes = ctypes.windll.kernel32.SetFileAttributesW SetFileAttributes.argtypes = ctypes.wintypes.LPWSTR, ctypes.wintypes.DWORD SetFileAttributes.restype = ctypes.wintypes.BOOL FILE_ATTRIBUTE_HIDDEN = 0x02 ret = SetFileAttributes(path, FILE_ATTRIBUTE_HIDDEN) if not ret: raise ctypes.WinError()
Upload File
Create Folder