> [[[NSWorkspace shareDWorkspace] performfileOperation:NSWorkspaceRecycleOperation]
> [[NSWorkspace shareDWorkspace] recycleURLs:]
> [NSfileManager trashItemAtURL:]
> [NSfileManager removeItemAtPath:]
> [NSfileManager removeItemAtURL:]
通过阅读此处的解释或官方Apple文档的链接,了解区别是很好的.
此外,如果有人知道将文件/非空目录移动到垃圾箱的通用方法,那么很高兴知道.
解决方法 > [[[NSWorkspace shareDWorkspace] performfileOperation:NSWorkspaceRecycleOperation]从OS X 10.11开始,这已被弃用,因此无需使用它.
> [[NSWorkspace shareDWorkspace] recycleURLs:]
这可能是你想要的.它是异步的,因此您的应用程序可以在文件移动到废纸篓时继续运行.
> [NSfileManager trashItemAtURL:]
这类似于选项2,但它是同步的,并且一次只处理一个文件.
> [NSfileManager removeItemAtPath:]
这不会丢弃文件,它会立即删除它.
> [NSfileManager removeItemAtURL:]
这与选项4类似,只是使用file:// URL而不是路径.当你已经拥有一个URL而不是一个路径时更方便.
NSWorkspace和NSFileManager的参考页面很好地涵盖了这些方法之间的所有差异.
这是一个快速示例,它使用recycleUrls:删除用户桌面上名为“Junk”的文件或文件夹:
- (IBAction)deleteJunk:(ID)sender { NSfileManager *manager = [NSfileManager defaultManager]; NSURL *url = [manager URLForDirectory:NSDesktopDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:NO error:nil]; // get Desktop folder url = [url URLByAppendingPathComponent:@"Junk"]; // URL to a file or folder named "Junk" on the Desktop NSArray *files = [NSArray arrayWithObject: url]; [[NSWorkspace shareDWorkspace] recycleURLs:files completionHandler:^(NSDictionary *newURLs,NSError *error) { if (error != nil) { //do something about the error NSLog(@"%@",error); } for (Nsstring *file in newURLs) { NSLog(@"file %@ moved to %@",file,[newURLs objectForKey:file]); } }];}总结
以上是内存溢出为你收集整理的macos – 将对象正确移动到废纸篓全部内容,希望文章能够帮你解决macos – 将对象正确移动到废纸篓所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)