Package org.apache.tomcat.jni
Class FileInfo
java.lang.Object
org.apache.tomcat.jni.FileInfo
Deprecated.
The scope of the APR/Native Library will be reduced in Tomcat
10.1.x / Tomcat Native 2.x onwards to only include those
components required to provide OpenSSL integration with the NIO
and NIO2 connectors.
Fileinfo
- Author:
- Mladen Turk
-
Field Summary
Modifier and TypeFieldDescriptionlong
Deprecated.The time the file was last accessedlong
Deprecated.The storage size consumed by the filelong
Deprecated.The time the file was created, or the inode was last changedint
Deprecated.The id of the device the file is on.long
Deprecated.The file's handle, if accessed (can be submitted to apr_duphandle)int
Deprecated.The type of file.Deprecated.The pathname of the file (possibly unrooted)int
Deprecated.The group id that owns the fileint
Deprecated.The inode of the file.long
Deprecated.The time the file was last modifiedDeprecated.The file's name (no path) in filesystem caseint
Deprecated.The number of hard links to the file.long
Deprecated.Allocates memory and closes lingering handles in the specified poolint
Deprecated.The access permissions of the file.long
Deprecated.The size of the fileint
Deprecated.The user id that owns the fileint
Deprecated.The bitmask describing valid fields of this apr_finfo_t structure including all available 'wanted' fields and potentially more. -
Constructor Summary
-
Method Summary
-
Field Details
-
pool
public long poolDeprecated.Allocates memory and closes lingering handles in the specified pool -
valid
public int validDeprecated.The bitmask describing valid fields of this apr_finfo_t structure including all available 'wanted' fields and potentially more. -
protection
public int protectionDeprecated.The access permissions of the file. Mimics Unix access rights. -
filetype
public int filetypeDeprecated.The type of file. One of APR_REG, APR_DIR, APR_CHR, APR_BLK, APR_PIPE, APR_LNK or APR_SOCK. If the type is undetermined, the value is APR_NOFILE. If the type cannot be determined, the value is APR_UNKFILE. -
user
public int userDeprecated.The user id that owns the file -
group
public int groupDeprecated.The group id that owns the file -
inode
public int inodeDeprecated.The inode of the file. -
device
public int deviceDeprecated.The id of the device the file is on. -
nlink
public int nlinkDeprecated.The number of hard links to the file. -
size
public long sizeDeprecated.The size of the file -
csize
public long csizeDeprecated.The storage size consumed by the file -
atime
public long atimeDeprecated.The time the file was last accessed -
mtime
public long mtimeDeprecated.The time the file was last modified -
ctime
public long ctimeDeprecated.The time the file was created, or the inode was last changed -
fname
Deprecated.The pathname of the file (possibly unrooted) -
name
Deprecated.The file's name (no path) in filesystem case -
filehand
public long filehandDeprecated.The file's handle, if accessed (can be submitted to apr_duphandle)
-
-
Constructor Details
-
FileInfo
public FileInfo()Deprecated.
-