Contents

CFURLSetTemporaryResourcePropertyForKey(_:_:_:)

Sets a temporary resource value on the URL.

Declaration

func CFURLSetTemporaryResourcePropertyForKey(_ url: CFURL!, _ key: CFString!, _ propertyValue: CFTypeRef!)

Parameters

  • url:

    The URL.

  • key:

    The key where the value should be stored. This key must be unique and must not conflict with any system-defined keys. Reverse-domain-name notation is recommended.

  • propertyValue:

    The value to store.

Discussion

Your app can use a temporary resource value to temporarily store a value for an app-defined resource value key in memory without modifying the actual resource that the URL represents. Once set, you can copy the temporary resource value from the URL object just as you would copy system-defined keys—by calling CFURLCopyResourcePropertyForKey(_:_:_:_:) or CFURLCopyResourcePropertiesForKeys(_:_:_:).

Your app can remove a temporary resource value from the URL object by calling CFURLClearResourcePropertyCacheForKey(_:_:) or CFURLClearResourcePropertyCache(_:) (to remove all temporary values).

This method is applicable only to URLs for file system resources.

See Also

Getting and Setting File System Resource Properties