在Swift中进行文件操作通常是使用FileManager
类来实现。以下是一些常见的文件操作示例:
let fileManager = FileManager.default
let filePath = "/path/to/file.txt"
if fileManager.fileExists(atPath: filePath) {
print("File exists")
} else {
print("File does not exist")
}
let fileManager = FileManager.default
let filePath = "/path/to/file.txt"
let fileContents = "Hello, World!"
fileManager.createFile(atPath: filePath, contents: fileContents.data(using: .utf8), attributes: nil)
let fileManager = FileManager.default
let filePath = "/path/to/file.txt"
if let fileContents = fileManager.contents(atPath: filePath) {
let contentsString = String(data: fileContents, encoding: .utf8)
print(contentsString)
} else {
print("Failed to read file")
}
let fileManager = FileManager.default
let filePath = "/path/to/file.txt"
let fileContents = "Hello, Swift!"
if let data = fileContents.data(using: .utf8) {
fileManager.createFile(atPath: filePath, contents: data, attributes: nil)
}
let fileManager = FileManager.default
let filePath = "/path/to/file.txt"
do {
try fileManager.removeItem(atPath: filePath)
} catch {
print("Failed to delete file: \(error)")
}
以上是一些简单的文件操作示例,可以根据实际需求使用FileManager
类的其他方法来进行更复杂的文件操作。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。