mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 02:44:13 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@64998 954022d7-b5bf-4e40-9824-e11837661b57
15 lines
371 B
Objective-C
15 lines
371 B
Objective-C
//
|
|
// NSFileManager+Utils.h
|
|
// Utils
|
|
//
|
|
// Created by alexey.musinov on 21.09.15.
|
|
// Copyright © 2015 Ascensio System SIA. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSFileManager (Utils)
|
|
- (BOOL)copyFolderAtPath:(NSString *)sourceFolder toDestinationFolderAtPath:(NSString*)destinationFolder;
|
|
- (NSString*)createTemporaryDirectory;
|
|
@end
|