JavaXT
|
|
FileAttributes ClassUsed to encapsulate extended file attributes. On unix and linux machines, this class is used to parse the output from ls. On windows, this class uses a JNI to return WIN32_FILE_ATTRIBUTE_DATA:
typedef struct _WIN32_FILE_ATTRIBUTE_DATA { DWORD dwFileAttributes; FILETIME ftCreationTime; FILETIME ftLastAccessTime; FILETIME ftLastWriteTime; DWORD nFileSizeHigh; DWORD nFileSizeLow; } WIN32_FILE_ATTRIBUTE_DATA; ConstructorsPublic Methods |