mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
28 lines
634 B
Swift
28 lines
634 B
Swift
// Copyright (c) 2026 Timofey Solomko
|
|
// Licensed under MIT License
|
|
//
|
|
// See LICENSE for license information
|
|
|
|
import Foundation
|
|
|
|
/**
|
|
Represents the type of the file system on which an archive or container was created. File system determines the meaning
|
|
of file attributes.
|
|
*/
|
|
public enum FileSystemType {
|
|
/// FAT filesystem.
|
|
case fat
|
|
/// Filesystem of older Macintosh systems.
|
|
case macintosh
|
|
/// NTFS.
|
|
case ntfs
|
|
/// Other/unknown file system.
|
|
case other
|
|
/**
|
|
One of many file systems of UNIX-like OS.
|
|
|
|
- Note: Modern macOS systems also fall into this category.
|
|
*/
|
|
case unix
|
|
}
|