iPhone - 获取与zip名称相同的zip文件名和文件夹

发布于 2024-10-17 02:17:22 字数 480 浏览 3 评论 0原文

我使用以下代码从 iPhone 应用程序中的文件夹中获取 zip 文件列表。

NSFileManager* fileMan = [NSFileManager defaultManager];
NSArray* files = [fileMan contentsOfDirectoryAtPath:myFolder error:&err];
NSArray* exts = [NSArray arrayWithObjects:@"zip", nil]; 
files = [files pathsMatchingExtensions:exts];

我使用上面的代码删除“myFolder”中的 zip 文件 在“myFolder”中,除了我的zip之外,我还有同名的解压文件夹。例如,如果 zip 文件名称为 A.zip,则解压缩文件夹名称为“A”。 我的问题是如何获得“A.zip”和“A”。我不想有提取文件名然后获取文件夹的代码......我想知道是否还有其他替代方案

I'm using the following code to get list of zip files from a folder in my iphone application.

NSFileManager* fileMan = [NSFileManager defaultManager];
NSArray* files = [fileMan contentsOfDirectoryAtPath:myFolder error:&err];
NSArray* exts = [NSArray arrayWithObjects:@"zip", nil]; 
files = [files pathsMatchingExtensions:exts];

I'm using above code to remove zip files in "myFolder"
In "myFolder", along with my zip, i also have unzip folder with the same name. For example if zip file name is A.zip, unzip folder name is "A".
My question is how can I get "A.zip" and "A". I don't want to have code that extracts the file name and then getting the folder...... I want to know if any other alternative is there

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

握住我的手 2024-10-24 02:17:22

使用以下代码。

NSString *fileName = [[path lastPathComponent] stringByDeletingPathExtension];  
NSString *fileType = [path pathExtension];

其中path是一个NSString

Use the following codes.

NSString *fileName = [[path lastPathComponent] stringByDeletingPathExtension];  
NSString *fileType = [path pathExtension];

where path is a NSString.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文