美文网首页
Samba协议总结记录!-清除缓存

Samba协议总结记录!-清除缓存

作者: ZPengs | 来源:发表于2016-10-28 14:30 被阅读140次

    首先

    (稍后抽时间再总结,先记录)

    Paste_Image.png

    先了解下常见的NSFileManager文件方法:

    
    获取App沙盒根路径:
    NSString *homePath=NSHomeDirectory();
    
    获取Documents目录路径:
    NSArray *Documentspaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 
    NSString *documentsDirectory = [paths objectAtIndex:0];
    
    获取Library目录路径
    NSArray *Librarypaths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES); 
    NSString *libraryDirectory = [paths objectAtIndex:0];
    
    获取Library/Caches目录路径
    NSArray *cacPath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
     NSString *cachePath = [cacPath objectAtIndex:0];
    
    获取Tmp目录路径
    NSString *tmpDirectory = NSTemporaryDirectory();
    
    
    -(NSData *)contentsAtPath:path  //从一个文件读取数据
    -(BOOL)createFileAtPath: path contents:(NSData *)data attributes:attr  //向一个文件写入数据
    -(BOOL)removeItemAtPath:path error:err  //删除一个文件
    -(BOOL)moveItemAtPath:from toPath:to error:err  //重命名或者移动一个文件(to不能是已存在的)
    -(BOOL)copyItemAtPath:from toPath:to error:err  //复制文件(to不能是已存在的)
    -(BOOL)contentsEqualAtPath:path andPath:path2  //比较两个文件的内容
    -(BOOL)fileExistAtPath:path  //测试文件是否存在
    -(BOOL)isReadableFileAtPath:path  //测试文件是否存在,并且是否能执行读操作  
    -(BOOL)isWriteableFileAtPath:path  //测试文件是否存在,并且是否能执行写操作  
    -(NSDictionary *)attributesOfItemAtPath:path error:err  //获取文件的属性  
    -(BOOL)setAttributesOfItemAtPath:attr error:err  //更改文件的属性
    使用目录
    -(NSString *)currentDirectoryPath  //获取当前目录
    -(BOOL)changeCurrentDirectoryPath:path  //更改当前目录
    -(BOOL)copyItemAtPath:from toPath:to error:err  //复制目录结构(to不能是已存在的)
    -(BOOL)createDirectoryAtPath:path withIntermediateDirectories:(BOOL)flag attribute:attr  //创建一个新目录
    -(BOOL)fileExistAtPath:path isDirectory:(BOOL*)flag  //测试文件是不是目录(flag中储存结果YES/NO)
    -(NSArray *)contentsOfDirectoryAtPath:path error:err  //列出目录内容
    -(NSDirectoryEnumerator *)enumeratorAtPath:path  //枚举目录的内容
    -(BOOL)removeItemAtPath:path error:err  //删除空目录
    -(BOOL)moveItemAtPath:from toPath:to error:err   //重命名或移动一个目录(to不能是已存在的)
    常用路径工具方法
    +(NSString *)pathWithComponens:components  //根据components中的元素构造有效路径
    -(NSArray *)pathComponents  //析构路径,获得组成此路径的各个部分
    -(NSString *)lastPathComponent  //提取路径的最后一个组成部分
    -(NSString *)pathExtension  //从路径的最后一个组成部分中提取其扩展名
    -(NSString *)stringByAppendingPathComponent:path  //将path添加到现有路径的末尾
    -(NSString *)stringByAppendingPathExtension:ext  //将指定的扩展名添加到路径的最后一个组成部分
    -(NSString *)stringByDeletingLastPathComponent  //删除路径的最后一个组成部分
    -(NSString *)stringByDeletingPathExtension  //从文件的最后一部分删除扩展名
    -(NSString *)stringByExpandingTileInPath   //将路径中代字符扩展成用户主目录(~)或指定用户的主目录(~user)
    -(NSString *)stringByresolvingSymlinksInPath  //尝试解析路径中的符号链接
    -(NSString *)stringByStandardizingPath  //通过尝试解析~、..(父目录符号)、.(当前目录符号)和符号链接来标准化路径
    常用的路径工具函数
    NSString* NSUserName(void)  //返回当前用户的登录名
    NSString* NSFullUserName(void)  //返回当前用户的完整用户名
    NSString* NSHomeDirectory(void)  //返回当前用户主目录的路径
    NSString* NSHomeDirectoryForUser(NSString* user)  //返回用户user的主目录
    NSString* NSTemporaryDirectory(void)  //返回可用于创建临时文件的路径目录
    常用的IOS目录
    Documents(NSDocumentDirectory)  //用于写入应用相关数据文件的目录,在ios中写入这里的文件能够与iTunes共享并访问,存储在这里的文件会自动备份到云端
    Library/Caches(NSCachesDirectory)  //用于写入应用支持文件的目录,保存应用程序再次启动需要的信息。iTunes不会对这个目录的内容进行备份
    tmp(use NSTemporaryDirectory())  //这个目录用于存放临时文件,只程序终止时需要移除这些文件,当应用程序不再需要这些临时文件时,应该将其从这个目录中删除
    Library/Preferences  //这个目录包含应用程序的偏好设置文件,使用 NSUserDefault类进行偏好设置文件的创建、读取和修改
    
    

    清除应用缓存

    //
    //  ViewController.m
    //  testDemocach
    //
    //  Created by Sunniwell on 2017/3/14.
    //  Copyright © 2017年 ZPengs. All rights reserved.
    //
    
    #import "ViewController.h"
    
    @interface ViewController ()
    
    @end
    
    @implementation ViewController
    
    - (void)viewDidLoad {
        [super viewDidLoad];
        UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        btn.frame = CGRectMake(100, 100, 100, 50);
        [btn setTitle:@"清除缓存" forState:UIControlStateNormal];
        btn.backgroundColor = [UIColor purpleColor];
        [btn addTarget:self action:@selector(putBufferBtnClicked:) forControlEvents:UIControlEventTouchUpInside];
        [self.view addSubview:btn];
        // Do any additional setup after loading the view, typically from a nib.
    }
    //清除缓存按钮的点击事件
    - (void)putBufferBtnClicked:(UIButton *)btn{
        CGFloat size = [self folderSizeAtPath:NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).lastObject] + [self folderSizeAtPath:NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES).lastObject] + [self folderSizeAtPath:NSTemporaryDirectory()];
        
        NSString *message = size > 1 ? [NSString stringWithFormat:@"缓存%.0fM, 删除缓存", size] : [NSString stringWithFormat:@"缓存%.0fK, 删除缓存", size * 1024.0];
        
        UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:message preferredStyle:(UIAlertControllerStyleAlert)];
        
        UIAlertAction *action = [UIAlertAction actionWithTitle:@"确定" style:(UIAlertActionStyleDefault) handler:^(UIAlertAction *action) {
            [self cleanCaches:NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).lastObject];
            [self cleanCaches:NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES).lastObject];
            [self cleanCaches:NSTemporaryDirectory()];
        }];
        
        UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"取消" style:(UIAlertActionStyleCancel) handler:nil];
        [alert addAction:action];
        [alert addAction:cancel];
        [self showDetailViewController:alert sender:nil];
    }
    
    // 计算目录大小
    - (CGFloat)folderSizeAtPath:(NSString *)path{
        // 利用NSFileManager实现对文件的管理
        NSFileManager *manager = [NSFileManager defaultManager];
        CGFloat size = 0;
        if ([manager fileExistsAtPath:path]) {
            // 获取该目录下的文件,计算其大小
            NSArray *childrenFile = [manager subpathsAtPath:path];
            for (NSString *fileName in childrenFile) {
                NSString *absolutePath = [path stringByAppendingPathComponent:fileName];
                size += [manager attributesOfItemAtPath:absolutePath error:nil].fileSize;
            }
            // 将大小转化为M
            return size / 1024.0 / 1024.0;
        }
        return 0;
    }
    // 根据路径删除文件
    - (void)cleanCaches:(NSString *)path{
        // 利用NSFileManager实现对文件的管理
        NSFileManager *fileManager = [NSFileManager defaultManager];
        if ([fileManager fileExistsAtPath:path]) {
            // 获取该路径下面的文件名
            NSArray *childrenFiles = [fileManager subpathsAtPath:path];
            for (NSString *fileName in childrenFiles) {
                // 拼接路径
                NSString *absolutePath = [path stringByAppendingPathComponent:fileName];
                // 将文件删除
                [fileManager removeItemAtPath:absolutePath error:nil];
            }  
        }
    }
    
    
    @end
    
    
    
    

    相关文章

      网友评论

          本文标题:Samba协议总结记录!-清除缓存

          本文链接:https://www.haomeiwen.com/subject/ioheuttx.html