如何在Objective-C中以编程方式检查特定路径上的目录是否存在?

时间:2022-12-04 23:11:36

Please tell me how to

请告诉我怎么走。

  1. Get the current working directory's absolute path

    获取当前工作目录的绝对路径

  2. If this is the absolute path /Users/iphone/Documents/Archive

    如果这是绝对路径/用户/iphone/文档/存档

    how to convert this path to relative path?

    如何将此路径转换为相对路径?

  3. How to check if directory exists at patricular path programmatically in Objective-C and if it doesn't exist how to create it programmatically? i need to do this using relative path.

    如何在Objective-C中以编程的方式检查目录是否存在,如果不存在,如何以编程的方式创建?我需要使用相对路径。

Thank You.

谢谢你!

1 个解决方案

#1


11  

The main source of information is the Apple File System Programming Guide

主要的信息来源是苹果文件系统编程指南

From there or subtopics you get information for your questions.

从这里或子主题中,您可以获得有关您的问题的信息。

1) NSFileManager currentDirectoryPath

1)NSFileManager currentDirectoryPath

3) NSFileManager fileExistsAtPath:isDirectory:

3)NSFileManager fileExistsAtPath:isDirectory:

#1


11  

The main source of information is the Apple File System Programming Guide

主要的信息来源是苹果文件系统编程指南

From there or subtopics you get information for your questions.

从这里或子主题中,您可以获得有关您的问题的信息。

1) NSFileManager currentDirectoryPath

1)NSFileManager currentDirectoryPath

3) NSFileManager fileExistsAtPath:isDirectory:

3)NSFileManager fileExistsAtPath:isDirectory: