mirror of
https://github.com/apple/swift-nio.git
synced 2026-05-20 20:30:36 +00:00
Motivation: We accidentally removed the 'NIOFileSystem' module from the '_NIOFileSystem' product in the last release. Modifications: - Rename 'NIOFileSystem' and 'NIOFileSystemFoundationCompat' to 'NIOFS' and 'NIOFSFoundationCompat' - Add back 'NIOFileSystem' which re-exports '_NIOFileSystem' (there was no publicly available 'NIOFileSystemFoundationCompat' module to remove, only '_NIOFileSystemFoundationCompat'). Result: Fewer breaks
48 lines
1.5 KiB
Swift
48 lines
1.5 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the SwiftNIO open source project
|
|
//
|
|
// Copyright (c) 2025 Apple Inc. and the SwiftNIO project authors
|
|
// Licensed under Apache License v2.0
|
|
//
|
|
// See LICENSE.txt for license information
|
|
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import SystemPackage
|
|
|
|
/// Information about an item within a directory.
|
|
public struct DirectoryEntry: Sendable, Hashable, Equatable {
|
|
/// The path of the directory entry.
|
|
///
|
|
/// - Precondition: The path must have at least one component.
|
|
public let path: NIOFilePath
|
|
|
|
/// The name of the entry; the final component of the ``path``.
|
|
///
|
|
/// If `path` is "/Users/tim/path-to-4T.key" then `name` will be "path-to-4T.key".
|
|
public var name: String {
|
|
self.path.underlying.lastComponent!.string
|
|
}
|
|
|
|
/// The type of entry.
|
|
public var type: FileType
|
|
|
|
/// Creates a directory entry; returns `nil` if `path` has no components.
|
|
///
|
|
/// - Parameters:
|
|
/// - path: The path of the directory entry which must contain at least one component.
|
|
/// - type: The type of entry.
|
|
public init?(path: NIOFilePath, type: FileType) {
|
|
if path.underlying.components.isEmpty {
|
|
return nil
|
|
}
|
|
|
|
self.path = path
|
|
self.type = type
|
|
}
|
|
}
|