如何使用 C 在 iOS 中打开文件?

问题描述

解决方

没有错误,我没注意。感谢 Rob 指出这一点


我有一个需要使用 C 库读取文件的 iOS 应用。

当我尝试从 C 函数访问文件时,我只得到 permission denied error (13) 没有这样的文件或目录,我找不到原因。当我使用 Swift 创建、读取或写入时不会发生这种情况。

我尝试了几种方法来在用户数据容器内创建文件 URL,C 没有任何作用,它只适用于 Swift。

即使文件是用 Swift 创建的,在 C 调用前后打开、读取和验证,它也只有 C 中的错误

我尝试过的事情

// I tried different paths before and added the filename to these directories
// FileManager.default.urls(for: .documentDirectory,in: .userDomainMask).first!
// FileManager.default.urls(for: .libraryDirectory,in: .userDomainMask).first!

let path: String = NstemporaryDirectory().appending("test_file.txt")
FileManager.default.fileExists(atPath: path.path)
// true

XCTAssertNoThrow(try "test".write(to: URL(fileURLWithPath: path),atomically: true,encoding: .utf8))
        XCTAssertNoThrow(try FileManager.default.setAttributes([FileAttributeKey.posixPermissions: 0o777],ofItemAtPath: path))

// call C
test_read_file(path)

FileManager.default.fileExists(atPath: path.path)
// true
// test_read_file.c
int test_read_file(const char* path) {
  access(file_path,W_OK);
  // returns 0
  
  open(path,O_RDONLY);
  // returns 13

  // errno is 2 (ENOENT: No such file or directory)

  return 0;
}

更正 errno 值为 2

ENOENT 2 No such file or directory

解决方法

13 返回值是一个文件句柄,而不是一个错误代码,它表明您的代码完全按照您的预期工作。

open 成功返回非负值,失败返回 -1。要检查特定错误,请检查 errno