[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
lib
/
python3.6
/
site-packages
/
setuptools
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 __pycache__
SET
[ DEL ]
📁 _vendor
SET
[ DEL ]
📁 command
SET
[ DEL ]
📁 extern
SET
[ DEL ]
📄 __init__.py
5,700 B
SET
[ EDIT ]
|
[ DEL ]
📄 archive_util.py
6,592 B
SET
[ EDIT ]
|
[ DEL ]
📄 build_meta.py
5,671 B
SET
[ EDIT ]
|
[ DEL ]
📄 config.py
18,006 B
SET
[ EDIT ]
|
[ DEL ]
📄 dep_util.py
935 B
SET
[ EDIT ]
|
[ DEL ]
📄 depends.py
5,837 B
SET
[ EDIT ]
|
[ DEL ]
📄 dist.py
42,613 B
SET
[ EDIT ]
|
[ DEL ]
📄 extension.py
1,729 B
SET
[ EDIT ]
|
[ DEL ]
📄 glibc.py
3,146 B
SET
[ EDIT ]
|
[ DEL ]
📄 glob.py
5,207 B
SET
[ EDIT ]
|
[ DEL ]
📄 launch.py
787 B
SET
[ EDIT ]
|
[ DEL ]
📄 lib2to3_ex.py
2,013 B
SET
[ EDIT ]
|
[ DEL ]
📄 monkey.py
5,261 B
SET
[ EDIT ]
|
[ DEL ]
📄 msvc.py
40,877 B
SET
[ EDIT ]
|
[ DEL ]
📄 namespaces.py
3,199 B
SET
[ EDIT ]
|
[ DEL ]
📄 package_index.py
40,320 B
SET
[ EDIT ]
|
[ DEL ]
📄 pep425tags.py
10,873 B
SET
[ EDIT ]
|
[ DEL ]
📄 py27compat.py
536 B
SET
[ EDIT ]
|
[ DEL ]
📄 py31compat.py
1,192 B
SET
[ EDIT ]
|
[ DEL ]
📄 py33compat.py
1,182 B
SET
[ EDIT ]
|
[ DEL ]
📄 py36compat.py
2,891 B
SET
[ EDIT ]
|
[ DEL ]
📄 sandbox.py
14,276 B
SET
[ EDIT ]
|
[ DEL ]
📄 script (dev).tmpl
201 B
SET
[ EDIT ]
|
[ DEL ]
📄 script.tmpl
138 B
SET
[ EDIT ]
|
[ DEL ]
📄 site-patch.py
2,307 B
SET
[ EDIT ]
|
[ DEL ]
📄 ssl_support.py
8,492 B
SET
[ EDIT ]
|
[ DEL ]
📄 unicode_utils.py
996 B
SET
[ EDIT ]
|
[ DEL ]
📄 version.py
144 B
SET
[ EDIT ]
|
[ DEL ]
📄 wheel.py
7,778 B
SET
[ EDIT ]
|
[ DEL ]
📄 windows_support.py
714 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: 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()