Files
SWCompression/Sources/Common/FileSystemType.swift
T
2017-10-28 17:07:00 +03:00

22 lines
420 B
Swift

// Copyright (c) 2017 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
import Foundation
public enum FileSystemType {
// TODO: Sort alphabetically.
/**
One of many UNIX-like systems.
- Note: Modern macOS systems also fall into this category.
*/
case unix
/// Older Macintosh systems.
case macintosh
case fat
case ntfs
case other
}