美文网首页
NSProcessInfo

NSProcessInfo

作者: 起个名字真难啊2015 | 来源:发表于2017-03-20 16:43 被阅读20次

    NSProcessInfo类:允许你设置或检索正在运行的应用程序的各种类型信息

    (NSProcessInfo *)processInfo         //返回当前进程的信息
    -(NSArray*)arguments          //  以NSString对象数字的形式返回当前进程的参数
    -(NSDictionary *)environment        //返回变量/值对词典。描述当前的环境变量
    -(int)processIdentity                //返回进程标识
    -(NSString *)processName       //返回进程名称
    -(NSString *)globallyUniqueString  //每次调用该方法都会返回不同的单值字符串,可以用这个字符串生成单值临时文件名   
    -(NSString *)hostname        //返回主机系统的名称 
    -(unsigned int)operatingSystem           //返回表示操作系统的数字 
    -(NSString *)operatingSystemName   //返回操作系统名称 
    -(NSString *)operatingSystemVersionString      //返回操作系统当前版本
    -(void)setProcessName:(NSString *)name     //将当前进程名称设置为name
    

    过滤数组中的文件类型 :
    [fileList pathsMatchingExtensions:[NSArrayarrayWithObject:@"jpg"]];

    转载自

    相关文章

      网友评论

          本文标题:NSProcessInfo

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