KVO实现自定义文件复制进度展示

本文介绍了一种自定义文件类的方法,该方法利用NSFileManager及NSFileHandle实现文件的创建与复制,并通过控制每次赋值的固定长度来分多次复制以控制内存的并发使用。同时介绍了如何自定义使用者并通过设置观察者来动态观察文件复制进度。
一、创建文件

  说明:自定义文件类,通过NSFileManager 以及NSFileHandle 实现文件的创建和copy,为了控制内存的并发使用,通过控制每次赋值的固定长度来分多次复制:

NSString * path=NSHomeDirectory();
    path =[path stringByAppendingPathComponent:@"deskTop/Boby.m"];
    
    NSString * target=NSHomeDirectory();
    target =[target stringByAppendingPathComponent:@"deskTop/target.m"];
    
    NSFileManager * manager=[NSFileManager defaultManager];
    
    
    //校验并且创建文件
    if(![manager fileExistsAtPath:path]){
        [manager createFileAtPath:path contents:nil attributes:nil];
    }
    
    if(![manager fileExistsAtPath:target]){
        [manager createFileAtPath:target contents:nil attributes:nil];
    }
    NSDictionary * dic=[manager attributesOfItemAtPath:path error:nil];
    
    NSFileHandle * handle=[NSFileHandle fileHandleForReadingAtPath:path];
    NSFileHandle * handletTarget=[NSFileHandle fileHandleForWritingAtPath:target];
    
    int total=(int)[dic[@"NSFileSize"] integerValue];
    self.totalSize=total;
    int per=50;
    int count=total%per==0?total/per:total/per+1;
    for(int i=0;i<count;i++){
       
        [handle seekToFileOffset:self.nowSize];
        NSData *data= [handle readDataOfLength:per];
        
        int tem=per*(i+1);
        if(tem>total){
            tem=total;
        }

        self.nowSize=tem;
 
        [handletTarget seekToEndOfFile];
        [handletTarget writeData:data];
        [NSThread sleepForTimeInterval:0.2];
        
    }
    
    [handle closeFile];
[handletTarget closeFile];
二、设置观察者

  说明:自定义使用者,通过设置观察者来动态观察当前文件copy的进度并展示到控制台或者输出到UI,并提供方法接口,启动文件拷贝。

- (id) initWithFile:(FileMake *)files{
    self=[super init];
    
    if(self){
        self.file= files;
        [self.file addObserver:self forKeyPath:@"nowSize" options:NSKeyValueObservingOptionNew context:nil];
    }
    return self;
}

-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context{
    CGFloat all=self.file.totalSize;
    CGFloat now=[[change objectForKey:@"new"] floatValue];
    CGFloat result=now/all; 
    NSLog(@"%.2f",result);
    //一定不能忘了销毁当前的观察者
    if(result==1){
        [self.file removeObserver:self forKeyPath:@"nowSize"];
    }
}

- (void) begin{
    [self.file startCopy];
}

 

作者: 杰瑞教育
出处: http://www.cnblogs.com/jerehedu/ 
本文版权归烟台杰瑞教育科技有限公司和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
 

转载于:https://www.cnblogs.com/jerehedu/p/4377162.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值