mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
20 lines
378 B
Objective-C
20 lines
378 B
Objective-C
//
|
|
// NSFileWrapper+DTCopying.h
|
|
// DTFoundation
|
|
//
|
|
// Created by Oliver Drobnik on 10/19/12.
|
|
// Copyright (c) 2012 Cocoanetics. All rights reserved.
|
|
//
|
|
|
|
/**
|
|
Methods for copying file wrappers.
|
|
*/
|
|
@interface NSFileWrapper (DTCopying)
|
|
|
|
/**
|
|
Creates a copy of the receiver by deep copying all contained sub filewrappers.
|
|
*/
|
|
- (NSFileWrapper *)fileWrapperByDeepCopying;
|
|
|
|
@end
|