gpt4 book ai didi

cocoa - 如何将符号链接(symbolic link)移至垃圾箱?

转载 作者:行者123 更新时间:2023-12-03 16:13:05 25 4
gpt4 key购买 nike

我没有看到任何用于 FSPathMoveObjectToTrashSync() 函数的不跟踪链接的选项。

这是我尝试过的

创建链接和文件

[ 21:32:41 /tmp ] $ touch my_file
[ 21:32:45 /tmp ] $ ln -s my_file my_link
[ 21:32:52 /tmp ] $ la
total 8
drwxrwxrwt 12 root wheel 408 17 Maj 21:32 .
drwxr-xr-x@ 6 root wheel 204 9 Sep 2009 ..
-rw-r--r-- 1 neoneye wheel 0 17 Maj 21:32 my_file
lrwxr-xr-x 1 neoneye wheel 7 17 Maj 21:32 my_link -> my_file

将链接移至回收站

OSStatus status = FSPathMoveObjectToTrashSync(
"/tmp/my_link",
NULL,
kFSFileOperationDefaultOptions
);
NSLog(@"status: %i", (int)status);

输出为

status: 0

但是文件被删除了,但链接没有被删除

[ 21:32:55 /tmp ] $ la
total 8
drwxrwxrwt 11 root wheel 374 17 Maj 21:33 .
drwxr-xr-x@ 6 root wheel 204 9 Sep 2009 ..
lrwxr-xr-x 1 neoneye wheel 7 17 Maj 21:32 my_link -> my_file
[ 21:33:05 /tmp ] $

如何将移动符号链接(symbolic link)移至垃圾箱?

<小时/>

解决方案..感谢 Rob Napier

NSString* path = @"/tmp/my_link";
OSStatus status = 0;

FSRef ref;
status = FSPathMakeRefWithOptions(
(const UInt8 *)[path fileSystemRepresentation],
kFSPathMakeRefDoNotFollowLeafSymlink,
&ref,
NULL
);
NSAssert((status == 0), @"failed to make FSRef");

status = FSMoveObjectToTrashSync(
&ref,
NULL,
kFSFileOperationDefaultOptions
);
NSLog(@"status: %i", (int)status);

最佳答案

使用FSPathMakeRefWithOptions()生成链接的FSRef。然后使用FSMoveObjectToTrashSync()将其删除。

关于cocoa - 如何将符号链接(symbolic link)移至垃圾箱?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2852203/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com