你如何使用createFile函数?

时间:2016-11-08 17:58:44

标签: swift

我在Apple的API参考中发现了此声明,但我不确定如何使用它。

func createFile(atPath path: String, contents data: Data?, attributes attr: [String : Any]? = nil) -> Bool

当我开始输入createFile时,没有类似于此声明的自动完成。

我的路径是我计算机上的目录(不包括文件名),数据是字符串。

1 个答案:

答案 0 :(得分:1)

它在我的机器上工作正常。您可能只是没有使用FileManager对象:

enter image description here