真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

iOS關(guān)于獲取沙盒文件的一些總結(jié)-創(chuàng)新互聯(lián)

最近干活要用到操作本地沙盒的文件的一些東西,總結(jié)一下 包活圖片和視頻
獲取document文件夾的文件列表
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
 NSString *plantId = [[DSPKeychainServiceManager sharedManager] getPlantId];
        
//并給文件起個文件名
NSString *p_w_picpathDir = [[[paths objectAtIndex:0] stringByAppendingPathComponent:@"SMSPictures"] stringByAppendingPathComponent:plantId];
[[NSFileManager defaultManager] createDirectoryAtPath:p_w_picpathDir withIntermediateDirectories:YES attributes:nil error:nil];
// 獲取圖片列表
NSError *error_img;
NSArray *fileList_img = [[NSArray alloc] init];
//fileList_img便是包含有該文件夾下所有文件的文件名及文件夾名的數(shù)組
fileList_img = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:p_w_picpathDir error:&error_img];
        
NSMutableArray *dirArray_img = [[NSMutableArray alloc] init];
BOOL isDir_img = NO;
//在上面那段程序中獲得的fileList中列出文件夾名
for (NSString *file in fileList_img) {
     NSString *path = [p_w_picpathDir stringByAppendingPathComponent:file];
    [[NSFileManager defaultManager] fileExistsAtPath:path isDirectory:(&isDir_img)];
    if (!isDir_img) {
          [dirArray_img addObject:file];
    }
}
獲取視頻的縮略圖------->(從別家大牛那里轉(zhuǎn)來的)
原文地址:http://blog.sina.com.cn/s/blog_6d01cce301019xym.html
第一種:
+(UIImage *)getImage:(NSString *)vi
deoURL
{
    AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:[NSURL fileURLWithPath:videoURL] options:nil];
    AVAssetImageGenerator *gen = [[AVAssetImageGenerator alloc] initWithAsset:asset];
    gen.appliesPreferredTrackTransform = YES;
    CMTime time = CMTimeMakeWithSeconds(0.0, 600);
    NSError *error = nil;
    CMTime actualTime;    
    CGImageRef p_w_picpath = [gen copyCGImageAtTime:time actualTime:&actualTime error:&error];
    UIImage *thumb = [[UIImage alloc] initWithCGImage:p_w_picpath];
    CGImageRelease(p_w_picpath);
    return thumb;
}
第二種:
需要添加AVFoundation和CoreMedia.framework
MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc]initWithContentURL:videoURL]; 
moviePlayer.shouldAutoplay = NO;
UIImage *thumbnail = [moviePlayer thumbnailImageAtTime:time timeOption:MPMovieTimeOptionNearestKeyFrame];
下面這個也一樣
+(UIImage *)fFirstVideoFrame:(NSString *)path
{
    MPMoviePlayerController *mp = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:path]];
    UIImage *img = [mp thumbnailImageAtTime:0.0f timeOption:MPMovieTimeOptionNearestKeyFrame];
    return img;
}

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。

在孟州等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供做網(wǎng)站、成都網(wǎng)站設(shè)計 網(wǎng)站設(shè)計制作定制網(wǎng)站開發(fā),公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站制作,成都營銷網(wǎng)站建設(shè),外貿(mào)網(wǎng)站建設(shè),孟州網(wǎng)站建設(shè)費(fèi)用合理。
當(dāng)前標(biāo)題:iOS關(guān)于獲取沙盒文件的一些總結(jié)-創(chuàng)新互聯(lián)
文章轉(zhuǎn)載:http://weahome.cn/article/jdogh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部