Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
97a1d26b
Commit
97a1d26b
authored
Oct 21, 1990
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial revision
parent
ede22712
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
0 deletions
+55
-0
Lib/stat.py
Lib/stat.py
+55
-0
No files found.
Lib/stat.py
0 → 100644
View file @
97a1d26b
# Module 'stat'
# Defines constants and functions for interpreting stat/lstat struct
# as returned by posix.stat() and posix.lstat() (if it exists).
# XXX This module may have to be adapted for UNIXoid systems whose
# <sys/stat.h> deviates from AT&T or BSD UNIX; their S_IF* constants
# may differ.
# Suggested usage: from stat import *
# Tuple indices for stat struct members
ST_MODE
=
0
ST_INO
=
1
ST_DEV
=
2
ST_NLINK
=
3
ST_UID
=
4
ST_GID
=
5
ST_SIZE
=
6
ST_ATIME
=
7
ST_MTIME
=
8
ST_CTIME
=
9
def
S_IFMT
(
mode
):
return
mode
-
mode
%
4096
S_IFDIR
=
0040000
S_IFCHR
=
0020000
S_IFBLK
=
0060000
S_IFREG
=
0100000
S_IFIFO
=
0010000
S_IFLNK
=
0120000
S_IFSOCK
=
0140000
def
S_ISDIR
(
mode
):
return
S_IFMT
(
mode
)
=
S_IFDIR
def
S_ISCHR
(
mode
):
return
S_IFMT
(
mode
)
=
S_IFCHR
def
S_ISBLK
(
mode
):
return
S_IFMT
(
mode
)
=
S_IFBLK
def
S_ISREG
(
mode
):
return
S_IFMT
(
mode
)
=
S_IFREG
def
S_ISFIFO
(
mode
):
return
S_IFMT
(
mode
)
=
S_IFIFO
def
S_ISLNK
(
mode
):
return
S_IFMT
(
mode
)
=
S_IFLNK
def
S_ISSOCK
(
mode
):
return
S_IFMT
(
mode
)
=
S_IFSOCK
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment