iPhone - 获取与zip名称相同的zip文件名和文件夹
我使用以下代码从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用以下代码。
其中
path
是一个NSString
。Use the following codes.
where
path
is aNSString
.