Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
3bc034bb
Kaydet (Commit)
3bc034bb
authored
Mar 31, 1992
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use bitwise ops instead of %; added some warnings and comments
üst
e58f98bf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
10 deletions
+19
-10
stat.py
Lib/stat.py
+19
-10
No files found.
Lib/stat.py
Dosyayı görüntüle @
3bc034bb
# 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.
# as returned by os.stat() and os.lstat() (if it exists).
#
# Suggested usage: from stat import *
#
# XXX Strictly spoken, this module may have to be adapted for each POSIX
# implementation; in practice, however, the numeric constants used by
# stat() are almost universal (even for stat() emulations on non-UNIX
# systems like Macintosh or MS-DOS).
#
Tuple indices for stat struct members
#
Indices for stat struct members in tuple returned by os.stat()
ST_MODE
=
0
ST_INO
=
1
...
...
@@ -22,10 +23,16 @@ ST_ATIME = 7
ST_MTIME
=
8
ST_CTIME
=
9
# Extract bits from the mode
def
S_IMODE
(
mode
):
return
mode
%
4096
return
mode
&
07777
def
S_IFMT
(
mode
):
return
mode
-
mode
%
4096
return
mode
&
~
07777
# Constants used as S_IFMT() for various file types
# (not all are implemented on all systems)
S_IFDIR
=
0040000
S_IFCHR
=
0020000
...
...
@@ -35,6 +42,8 @@ S_IFIFO = 0010000
S_IFLNK
=
0120000
S_IFSOCK
=
0140000
# Functions to test for each file type
def
S_ISDIR
(
mode
):
return
S_IFMT
(
mode
)
==
S_IFDIR
...
...
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