gpt4 book ai didi

objective-c - Cocoa 中什么是 FILE * 类型,以及如何正确使用它?

转载 作者:行者123 更新时间:2023-12-03 16:55:18 26 4
gpt4 key购买 nike

我正在尝试从我的 Cocoa 应用程序运行 Bash 命令。并接收输出。我正在以管理员权限执行所有这些命令。 How to get output from Admin Priveleges bash script, called from Cocoa?

我想我需要 FILE * 类型来存储输出,但我不知道如何使用它。

什么是 FILE * 类型?我该如何使用它?

最佳答案

FILE * 是一个 C 类型,它与 Cocoa 没有任何关系。它是打开文件的句柄。这是一个例子:

#include <stdio.h>

int main () {
FILE *file;
file = fopen("myfile.txt", "w"); // open file
if (!file) { // file couldn't be opened
return 1;
}
fputs("fopen example", file); // write to file
fclose(file);
return 0;
}
<小时/>

在 Cocoa 中,您通常应该使用 NSStringNSDatawriteToURL:atomically:encoding:error:分别是 writeToURL:atomically: 方法。

关于objective-c - Cocoa 中什么是 FILE * 类型,以及如何正确使用它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7738659/

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