Files
test2/source/blender/blenlib/intern/fileops_apple.mm
Campbell Barton 381898b6dc Refactor: move BLI_path_util header to C++, rename to BLI_path_utils
Move to a C++ header to allow C++ features to be used there,
use the "utils" suffix as it's preferred for new files.

Ref !128147
2024-09-26 21:13:39 +10:00

34 lines
872 B
Plaintext

/* SPDX-FileCopyrightText: 2024 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup bli
*
* macOS specific implementations for fileops{_c}.cc.
*/
#import <Foundation/Foundation.h>
#include "BLI_fileops.h"
#include "BLI_path_utils.hh"
int BLI_delete_soft(const char *filepath, const char **r_error_message)
{
BLI_assert(!BLI_path_is_rel(filepath));
@autoreleasepool {
NSString *pathString = [NSString stringWithUTF8String:filepath];
NSFileManager *fileManager = [NSFileManager defaultManager];
NSURL *targetURL = [NSURL fileURLWithPath:pathString];
BOOL deleteSuccessful = [fileManager trashItemAtURL:targetURL resultingItemURL:nil error:nil];
if (!deleteSuccessful) {
*r_error_message = "The Cocoa API call to delete file or directory failed";
}
return deleteSuccessful ? 0 : -1;
}
}