FileInfo *fileInfo = [[FileInfo alloc] init];
fileInfo.name = fileName;
fileInfo.path = [rootPath stringByAppendingPathComponent:fileName];
//判断是文件夹还是文档
BOOL isDir = YES;
[fileManager fileExistsAtPath:fileInfo.path isDirectory:&isDir];
if (isDir) {
//文件夹
fileInfo.isDir = YES;
fileInfo.isLock = NO;
}else{
NSError *error = nil;
NSDictionary *fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:fileInfo.path error:&error];
if (fileAttributes) {
NSNumber *fileSize;
NSString *fileOwner, *creationDate;
NSDate *fileModDate;
//文件大小
if ((fileSize = [fileAttributes objectForKey:NSFileSize])) {
NSLog(@"File size: %qi\n", [fileSize unsignedLongLongValue]);
if (!fileInfo.isDir) {
fileInfo.size = [fileSize intValue];
//文件创建日期
if ((creationDate = [fileAttributes objectForKey:NSFileCreationDate])) {
NSLog(@"File creationDate: %@\n", creationDate);
fileInfo.date = creationDate;
//文件所有者
if ((fileOwner = [fileAttributes objectForKey:NSFileOwnerAccountName])) {
NSLog(@"Owner: %@\n", fileOwner);
//文件修改日期
if ((fileModDate = [fileAttributes objectForKey:NSFileModificationDate])) {
NSLog(@"Modification date: %@\n", fileModDate);
IOS获取文件属性。(包括创建日期) FileInfo *fileInfo = [[FileInfo alloc] init]; fileInfo.name = fileName; fileInfo.path = [rootPath stringByAppendingPathComponent:fileName]; ...
NSFileCreationDate和NSFileModificationDate两个属性分别代表文件创建时间和修改时间
NSArray *sortedPaths = [array sortedArrayUsingComparator:^(NSString * firstPath, NSString* secondPath) {
NSString *firstUr...
我在做根据链接下载视频到沙盒,然后保存到相册的过程中,遇到一个问题:
当我将保存到沙盒中的视频文件保存到相册后,在相册中显示的视频的时间并不是我下载视频的时间,而是视频内部自带的creationDate 属性
//#import <Photos/Photos.h>
// 此路径为保存到沙盒中的视频文件的完整路径
NSString *fullFilePath = "/Users/username/Library/Developer/CoreSimulato
NSError *error = nil;
NSString *filePath = [NSString stringWithContentsOfFile:[[NSBundle mainBundle]pathForResource:@"test" ofType:@"json"] encoding:NSUTF8StringEncoding error:&error];
NSLog(@"filePath%@",filePath);
//指定路径.
NSString *strPath =[[NSBundle mainBundle] pathForResource:@"lomo.jpg" ofType:nil];
NSLog(@"path:%@", strPath);
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *path =
法二:如果想对所有文件都有效
1、勾选:在setting里面进行操作:File -> Setting -> Editor -> General -> Soft-wrap these files
2、在Soft-wrap these files中添加“ ;*.py”如图
let manager = FileManager.default
let urlForDocument = manager.urls(for: .documentDirectory, in:.userDomainMask)
let url = urlForDocument[0] as URL
print(url)
对指定路径进行...
NSString *strPath =[[NSBundle mainBundle] pathForResource:@"lomo.jpg" ofType:nil];
NSLog(@"path:%@", strPath);
NSFileManager *fileManager = [NSFileManager defaultManager];
NSStrin
NSFileManager * fm = [NSFileManager DefaultManager];
NSArray *arr = [fm directoryContentsAtPath:path];
枚举这个数组就行,数组中的元素就是你要的文件名。
Image 在手机里 如果是手机拍的那么能使用ALAssetsLibrary获取一系列 图片的信息 颜色、GPS、尺寸、创建日期等
使用ALAssetsLibrary导入框架AssetsLibrary.framework 引入头文件
#import <AssetsLibrary/AssetsLibrary.h>
以手机相册为例代码如下:(获取gps里面时间戳为例)
#pr...
```objc
NSDate *currentDate = [NSDate date];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSString *currentTimeString = [dateFormatter stringFromDate:currentDate];
NSLog(@"当前时间:%@", currentTimeString);
这个代码会输出当前时间的字符串表示,例如:“2021-01-01 12:00:00”。`setDateFormat:` 方法可以根据你的需求设置日期格式。
var str ="请输入文字";//这里是显示提示文字的字符串
var input = document.getElementById("input");
input.placeholder=str;
input.onblur=function(){
this.placeholder=str;
input.onfocus=function(){
this.placeholder="";
</script>
[/code]
SQLServer学习笔记(2)
Tisfy:
解决android:background背景图片被拉伸问题
sooner0493:
pod install 换成pod install --verbose --no-repo-update这个命令,前面的命令被墙了
前端的那些事: