Instance Method (Default implementation)swift-nio 2.84.0_NIOFileSystem
removeValueForAttribute(_:)
FileHandle.swift:61- iOS
- 13.0+
- macOS
- 10.15+
- tvOS
- 13.0+
- watchOS
- 6.0+
func removeValueForAttribute(_ name: String) async throws
func removeValueForAttribute(_ name: String) async throws
s14_NIOFileSystem14_HasFileHandlePAAE23removeValueForAttributeyySSYaKF
What are these?47NA3
import _NIOFileSystem
A file system library for Swift.
protocol _HasFileHandle : FileHandleProtocol
Provides a FileHandle
.
@frozen struct String
A Unicode string value that is a collection of characters.
func removeValueForAttribute(_ name: String) async throws
Removes the value for the named attribute if it exists.
func addPermissions(_ permissions: FilePermissions) async throws -> FilePermissions
func attributeNames() async throws -> [String]
func close() async throws
func detachUnsafeFileDescriptor() throws -> FileDescriptor
func info() async throws -> FileInfo
func removePermissions(_ permissions: FilePermissions) async throws -> FilePermissions
func replacePermissions(_ permissions: FilePermissions) async throws
func setTimes(lastAccess: FileInfo.Timespec?, lastDataModification: FileInfo.Timespec?) async throws
func synchronize() async throws
func updateValueForAttribute(_ bytes: some RandomAccessCollection<UInt8> & Sendable, attribute name: String) async throws
func valueForAttribute(_ name: String) async throws -> [UInt8]
func withUnsafeDescriptor<R>(_ execute: @escaping (FileDescriptor) throws -> R) async throws -> R where R : Sendable