gpt4 book ai didi

iphone - 如何从文档目录加载 PDF?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:20:30 24 4
gpt4 key购买 nike

我可以使用此代码从 Resources 文件夹加载 pdf 文件(所有 pdf 文件)列表。

 NSArray *pdfs = [[NSBundle mainBundle] pathsForResourcesOfType:@"pdf" inDirectory:nil];

但我找不到从文档目录加载 pdf 文件列表的方法。以下代码行一次只能加载一个 pdf。

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *file = [documentsDirectory stringByAppendingPathComponent:@"test.pdf"];
NSURL *urlPdf = [NSURL fileURLWithPath: file];

如何从文档目录加载所有 pdf 文件

你能给我一个代码示例吗?

最佳答案

我能够使用这行代码解决我的问题:)

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSArray *pdfs = [[NSBundle bundleWithPath:[paths objectAtIndex:0]] pathsForResourcesOfType:@"pdf" inDirectory:nil];

关于iphone - 如何从文档目录加载 PDF?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7952930/

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