ios开发经常会遇到读文件,写文件等,对文件和文件夹的操作,这时就可以使用NSFileManager,NSFileHandle等类来实现。
下面总结了各种常用的操作:

1,遍历一个目录下的所有文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//假设用户文档下有如下文件和文件夹[test1.txt,fold1/test2.txt]
let manager = NSFileManager .defaultManager()
urlForDocument = manager. URLsForDirectory ( NSSearchPathDirectory . DocumentDirectory ,inDomains: NSSearchPathDomainMask UserDomainMask )
url = urlForDocument[0] as NSURL
//(1)对指定路径执行浅搜索,返回指定目录路径下的文件、子目录及符号链接的列表
contentsOfPath = try? manager.contentsOfDirectoryAtPath(url.path!)
//contentsOfPath:Optional([fold1,test1.txt])
print ( "contentsOfPath: \(contentsOfPath)" )
//(2)类似上面的,对指定路径执行浅搜索,返回指定目录路径下的文件、子目录及符号链接的列表
contentsOfURL = try? manager.contentsOfDirectoryAtURL(url,includingPropertiesForKeys: nil ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,options: NSDirectoryEnumerationoptions SkipsHiddenFiles );
//contentsOfURL:Optional([file://Users/.../Application/.../Documents/fold1/,
//file://Users/.../Application/.../Documents/test1.txt])
"contentsOfURL: \(contentsOfURL)" )
//(3)深度遍历,会递归遍历子文件夹(但不会递归符号链接)
enumeratorAtPath = manager.enumeratorAtPath(url.path!)
//enumeratorAtPath:Optional([fold1,fold1/test2.txt,test1.txt])
"enumeratorAtPath: \(enumeratorAtPath?.allObjects)" )
//(4)类似上面的,深度遍历,会递归遍历子文件夹(但不会递归符号链接)
enumeratorAtURL = manager.enumeratorAtURL(url,errorHandler: )
//file://Users/.../Application/.../Documents/fold1/test2.txt,
file://Users/.../Application/.../Documents/test1.txt])
"enumeratorAtURL: \(enumeratorAtURL?.allObjects)" )
//(5)深度遍历,会递归遍历子文件夹(包括符号链接,所以要求性能的话用enumeratorAtPath)
subPaths = manager.subpathsAtPath(url.path!)
//subPaths:Optional([fold1,test1.txt])
"subPaths: \(subPaths)" )

2,判断文件或文件夹是否存在
3
fileManager = .defaultManager()
filePath: String = NSHomeDirectory () + "/Documents/hangge.txt"
var exist = fileManager.fileExistsAtPath(filePath)

3,创建文件夹
方式1:
1
2
3
4
5
6
let myDirectory: String = NSHomeDirectory () + "/Documents/myFolder/Files"
fileManager = NSFileManager .defaultManager()
//withIntermediateDirectories为ture表示路径中间如果有不存在的文件夹都会创建
try! fileManager.createDirectoryAtPath(myDirectory,
withIntermediateDirectories: true ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,attributes: nil )
方式2:
6
7
8
9
10
11
12
13
14
15
func createFolder(name: ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,baseUrl: NSURL ){
manager = folder = baseUrl. URLByAppendingPathComponent (name,isDirectory: )
print ( "文件夹: \(folder)" )
exist = manager.fileExistsAtPath(folder.path!)
if !exist {
try! manager.createDirectoryAtURL(folder,withIntermediateDirectories: )
}
}
//在文档目录下新建folder目录
.defaultManager()
urlForDocument = manager. URLsForDirectory ( NSSearchPathDirectory . DocumentDirectory ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,inDomains: NSSearchPathDomainMask UserDomainMask )
url = urlForDocument[0] as NSURL
createFolder( "folder" ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,baseUrl: url)

4,将对象写入文件
可以通过writetoFile方法,可以创建文件并将对象写入,对象包括String,Nsstring,UIImage,NSArray,NSDictionary等。
(1)把String保存到文件
3
filePath: "/Documents/hangge.txt"
info = "欢迎来到hange.com"
try! info.writetoFile(filePath,atomically: ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,encoding: NSUTF8StringEncoding )

(2)把图片保存到文件路径下
4
"/Documents/hangge.png"
image = UIImage (named: "apple.png" )
data: NSData UIImagePNGRepresentation (image!)!
data.writetoFile(filePath,monospace!important; min-height:inherit!important">)

(3)把NSArray保存到文件路径下
array = NSArray(objects:"aaa"ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,"bbb""ccc")
"/Documents/array.plist"
array.writetoFile(filePath,monospace!important; min-height:inherit!important">)

(4)把NSDictionary保存到文件路径下
dictionary = NSDictionary(objects: ["111""222"],forKeys: [])
"/Documents/dictionary.plist"
dictionary.writetoFile(filePath,monospace!important; min-height:inherit!important">)

5,创建文件
15
16
17
18
19
20
createFile(name: ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,fileBaseUrl:
file = fileBaseUrl. (name)
"文件: \(file)" )
exist = manager.fileExistsAtPath(file.path!)
!exist {
data = (base64EncodedString: "aGVsbG8gd29ybGQ=" ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,options:. IgnoreUnkNownCharacters )
createSuccess = manager.createFileAtPath(file.path!,contents:data,monospace!important; min-height:inherit!important">)
"文件创建结果: \(createSuccess)" )
}
}
//在文档目录下新建test.txt文件
.defaultManager()
inDomains: )
NSURL
createFile( "test.txt" ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,fileBaseUrl: url)
//createFile("folder/new.txt",fileBaseUrl: url)

6,复制文件
(1)方法1
5
.defaultManager()
homeDirectory = ()
srcUrl = homeDirectory + "/Documents/hangge.txt"
toUrl = homeDirectory + "/Documents/copyed.txt"
try! fileManager.copyItemAtPath(srcUrl,toPath: toUrl)

(2)方法2
10
// 定位到用户文档目录
NSURL
// 将test.txt文件拷贝到文档目录根目录下的copyed.txt文件
srcUrl = url. toUrl = url. "copyed.txt"
try! manager.copyItemAtURL(srcUrl,toURL: toUrl)

7,移动文件
(1)方法1
"/Documents/moved"
try! fileManager.moveItemAtPath(srcUrl,toPath: toUrl)

(2)方法2
9
)
// 移动srcUrl中的文件(test.txt)到toUrl中(copyed.txt)
try! manager.moveItemAtURL(srcUrl,toURL: toUrl)

8,删除文件
(1)方法1
try! fileManager.removeItemAtPath(srcUrl)

(2)方法2
ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:100%!important; font-family:Consolas,
NSURL
// 删除文档根目录下的toUrl路径的文件(copyed.txt文件)
try! manager.removeItemAtURL(toUrl)

9,删除目录下所有的文件
(1)方法1:获取所有文件,然后遍历删除
myDirectory = "/Documents/Files"
fileArray:[ AnyObject ]? = fileManager.subpathsAtPath(myDirectory)
for fn in fileArray!{
try! fileManager.removeItemAtPath(myDirectory + "/\(fn)" }

(2)方法2:删除目录后重新创建该目录
try! fileManager.removeItemAtPath(myDirectory)
attributes: )
10,读取文件
urlsForDocDirectory = manager. docPath:= urlsForDocDirectory[0]NSURL
file = docPath. //方法1
readHandler = try! NSFileHandle (forReadingFromURL:file)
data = readHandler.readDataToEndOfFile()
readString = Nsstring (data: data,249)!important; border:0px!important; bottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:0px 1em!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; min-height:inherit!important"> "文件内容: \(readString)"
//方法2
data = manager.contentsAtPath(file.path!)
(data: data!,monospace!important; min-height:inherit!important">)
)

11,在任意位置写入数据
string = "添加一些文字到文件末尾"
appendedData = string.dataUsingEncoding( ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,allowLossyConversion: writeHandler = try? (forWritingToURL:file)
writeHandler!.seekToEndOfFile()
writeHandler!.writeData(appendedData!)

12,文件权限判断
13
readable = manager.isReadableFileAtPath(file.path!)
"可读: \(readable)" writeable = manager.isWritableFileAtPath(file.path!)
"可写: \(writeable)" executable = manager.isExecutableFileAtPath(file.path!)
"可执行: \(executable)" )
deleteable = manager.isDeletableFileAtPath(file.path!)
"可删除: \(deleteable)" )

13,获取文件属性(创建时间,修改时间,文件大小,文件类型等信息)
8
ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:100%!important; font-family:Consolas,
attributes = try? manager.attributesOfItemAtPath(file.path!) //结果为AnyObject类型
"attributes: \(attributes!)" )

14,文件/文件夹比较
14
contents = try! manager.contentsOfDirectoryAtPath(docPath.path!)
//下面比较前面两个文件是否内容相同(该方法也可以用来比较目录)
count = contents.count
count > 1 {
path1 = docPath.path! + "/" + (contents[0] as path2 = docPath.path! + + (contents[1] equal = manager.contentsEqualAtPath(path1,andpath:path2)
"比较结果: \(equal)" }

原文出自: www.hangge.com 转载请保留原文链接: http://www.hangge.com/blog/cache/detail_527.html

Swift - 文件,文件夹操作大全的更多相关文章

  1. 用canvas做一个DVD待机动画的实现代码

    这篇文章主要介绍了用canvas做一个DVD待机动画的实现代码的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

  2. 使用Html5多媒体实现微信语音功能

    这篇文章主要介绍了使用Html5多媒体实现微信语音功能,需要的朋友可以参考下

  3. HTML5自定义视频播放器源码

    这篇文章主要介绍了HTML5自定义视频播放器源码,非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下

  4. Html5 滚动穿透的方法

    这篇文章主要介绍了Html5 滚动穿透的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

  5. HTML5自定义mp3播放器源码

    这篇文章主要介绍了HTML5自定义mp3播放器源码,非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下

  6. 详解HTML5中CSS外观属性

    这篇文章主要介绍了HTML5中CSS外观属性的相关知识,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,,需要的朋友可以参考下

  7. CSS中实现动画效果-附案例

    这篇文章主要介绍了 CSS中实现动画效果并附上案例代码及实现效果,就是CSS动画样式处理,动画声明需要使用@keyframes name,后面的name是人为定义的动画名称,下面我们来看看文章的具体实现内容吧,需要的小伙伴可以参考一下

  8. html5默认气泡修改的代码详解

    这篇文章主要介绍了html5默认气泡修改的代码详解,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

  9. 基于Html5 canvas实现裁剪图片和马赛克功能及又拍云上传图片 功能

    这篇文章主要介绍了基于Html5 canvas实现裁剪图片和马赛克功能及又拍云上传图片 功能,需要的朋友可以参考下

  10. Html5移动端适配IphoneX等机型的方法

    这篇文章主要介绍了Html5移动端适配IphoneX等机型的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

随机推荐

  1. Swift UITextField,UITextView,UISegmentedControl,UISwitch

    下面我们通过一个demo来简单的实现下这些控件的功能.首先,我们拖将这几个控件拖到storyboard,并关联上相应的属性和动作.如图:关联上属性和动作后,看看实现的代码:

  2. swift UISlider,UIStepper

    我们用两个label来显示slider和stepper的值.再用张图片来显示改变stepper值的效果.首先,这三个控件需要全局变量声明如下然后,我们对所有的控件做个简单的布局:最后,当slider的值改变时,我们用一个label来显示值的变化,同样,用另一个label来显示stepper值的变化,并改变图片的大小:实现效果如下:

  3. preferredFontForTextStyle字体设置之更改

    即:

  4. Swift没有异常处理,遇到功能性错误怎么办?

    本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容,请发送邮件至dio@foxmail.com举报,一经查实,本站将立刻删除。

  5. 字典实战和UIKit初探

    ios中数组和字典的应用Applicationschedule类别子项类别名称优先级数据包contactsentertainment接触UIKit学习用Swift调用CocoaTouchimportUIKitletcolors=[]varbackView=UIView(frame:CGRectMake(0.0,0.0,320.0,CGFloat(colors.count*50)))backView

  6. swift语言IOS8开发战记21 Core Data2

    上一话中我们简单地介绍了一些coredata的基本知识,这一话我们通过编程来实现coredata的使用。还记得我们在coredata中定义的那个Model么,上面这段代码会加载这个Model。定义完方法之后,我们对coredata的准备都已经完成了。最后强调一点,coredata并不是数据库,它只是一个框架,协助我们进行数据库操作,它并不关心我们把数据存到哪里。

  7. swift语言IOS8开发战记22 Core Data3

    上一话我们定义了与coredata有关的变量和方法,做足了准备工作,这一话我们来试试能不能成功。首先打开上一话中生成的Info类,在其中引用头文件的地方添加一个@objc,不然后面会报错,我也不知道为什么。

  8. swift实战小程序1天气预报

    在有一定swift基础的情况下,让我们来做一些小程序练练手,今天来试试做一个简单地天气预报。然后在btnpressed方法中依旧增加loadWeather方法.在loadWeather方法中加上信息的显示语句:运行一下看看效果,如图:虽然显示出来了,但是我们的text是可编辑状态的,在storyboard中勾选Editable,再次运行:大功告成,而且现在每次单击按钮,就会重新请求天气情况,大家也来试试吧。

  9. 【iOS学习01】swift ? and !  的学习

    如果不初始化就会报错。

  10. swift语言IOS8开发战记23 Core Data4

    接着我们需要把我们的Rest类变成一个被coredata管理的类,点开Rest类,作如下修改:关键字@NSManaged的作用是与实体中对应的属性通信,BinaryData对应的类型是NSData,CoreData没有布尔属性,只能用0和1来区分。进行如下操作,输入类名:建立好之后因为我们之前写的代码有些地方并不适用于coredata,所以编译器会报错,现在来一一解决。

返回
顶部