你如何找到多少磁盘空间可可还剩下什么?(How do you find how much disk

2019-09-01 07:22发布

我想,我希望能找出任何存储,而不仅仅是系统盘,但是这是最重要的。

Answer 1:

使用-[NSFileManager attributesOfFileSystemForPath:error:]



Answer 2:

编辑 fileSystemAttributesAtPath:已被弃用,使用attributesOfFileSystemForPath:错误:为NSD建议。 我犯了一个错误,当我认为它没有工作。

// this works
NSError *error = nil;
NSDictionary *attr = [NSFM attributesOfFileSystemForPath:@"/" error:&error];
if (!error) {
    double bytesFree = [[attr objectForKey:NSFileSystemFreeSize] doubleValue];
}

我想这一点,attributesOfItemAtPath:错误,但字典返回似乎不具备NSFileSystemFreeNodes关键。

NSFileManager *fm = [NSFileManager defaultManager];
NSError *error = nil;
NSDictionary *attr = [fm attributesOfItemAtPath:@"/" error:&error];
if (!error) {
    NSLog(@"Attr: %@", attr);
}

2009-10-28 17:21:11.936 MyApp[33149:a0b] Attr: {
    NSFileCreationDate = "2009-08-28 15:37:03 -0400";
    NSFileExtensionHidden = 0;
    NSFileGroupOwnerAccountID = 80;
    NSFileGroupOwnerAccountName = admin;
    NSFileModificationDate = "2009-10-28 15:22:15 -0400";
    NSFileOwnerAccountID = 0;
    NSFileOwnerAccountName = root;
    NSFilePosixPermissions = 1021;
    NSFileReferenceCount = 40;
    NSFileSize = 1428;
    NSFileSystemFileNumber = 2;
    NSFileSystemNumber = 234881026;
    NSFileType = NSFileTypeDirectory;
}

之后环视了一下 ,好像fileSystemAttributesAtPath:是返回它的方法。 奇怪的。

NSFileManager *fm = [NSFileManager defaultManager];
NSDictionary *attr = [fm fileSystemAttributesAtPath:@"/"]; 
NSLog(@"Attr: %@", attr);


2009-10-28 17:24:07.993 MyApp[33283:a0b] Attr: {
    NSFileSystemFreeNodes = 5027061;
    NSFileSystemFreeSize = 20590841856;
    NSFileSystemNodes = 69697534;
    NSFileSystemNumber = 234881026;
    NSFileSystemSize = 285481107456;
}


Answer 3:

我用这个:

NSDictionary* fileAttributes = [[NSFileManager defaultManager] attributesOfFileSystemForPath:@"/"
                                                                                   error:&error];
unsigned long long freeSpace = [[fileAttributes objectForKey:NSFileSystemFreeSize] longLongValue];
NSLog(@"free disk space: %dGB", (int)(freeSpace / 1073741824));


Answer 4:

通过SWIFT您可以使用此功能获得免费空间

func getFreeSpace() -> CGFloat {
      do {
         let fileAttributes = try NSFileManager.defaultManager().attributesOfFileSystemForPath("/")
         if let size = fileAttributes[NSFileSystemFreeSize] as? CGFloat {
            return size
         }
      } catch { }
      return 0
   }


Answer 5:

从获取这个职位 :

- (uint64_t)freeDiskspace
{
    uint64_t totalSpace = 0;
    uint64_t totalFreeSpace = 0;

    __autoreleasing NSError *error = nil;  
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);  
    NSDictionary *dictionary = [[NSFileManager defaultManager] attributesOfFileSystemForPath:[paths lastObject] error: &error];  

    if (dictionary) {  
        NSNumber *fileSystemSizeInBytes = [dictionary objectForKey: NSFileSystemSize];  
        NSNumber *freeFileSystemSizeInBytes = [dictionary objectForKey:NSFileSystemFreeSize];
        totalSpace = [fileSystemSizeInBytes unsignedLongLongValue];
        totalFreeSpace = [freeFileSystemSizeInBytes unsignedLongLongValue];
        NSLog(@"Memory Capacity of %llu MiB with %llu MiB Free memory available.", ((totalSpace/1024ll)/1024ll), ((totalFreeSpace/1024ll)/1024ll));
    } else {  
        NSLog(@"Error Obtaining System Memory Info: Domain = %@, Code = %d", [error domain], [error code]);  
    }  

    return totalFreeSpace;
}

主要的区别是,你应该使用NSSearchPathForDirectioriesInDomains,否则我得到的模拟器正确的值,但在设备上“/”文件夹参考返回我像190MB这是不正确的。



Answer 6:

在MacOS斯威夫特3.0-4.0

我做这个MacOS的,并没有问题。 输出是字节,因此你必须在1024至分摊。

func getHD() -> String {
    do {
        let du = try FileManager.default.attributesOfFileSystem(forPath: "/")
        if let size = du[FileAttributeKey.systemFreeSize] as? Int64 {
            return (String(size / 1024 / 1024 / 1024) + "GB")
        }
        debugPrint(du)
    }
    catch {
        debugPrint(error)
        return "Check Failed"
    }
    return "Checking..."
}

FileManager.default.attributesOfFileSystem(forPath: "/")是刚开可用于根目录的文件系统中的各种属性。 其中一个属性恰好是可用磁盘空间。

du[FileAttributeKey.systemFreeSize] as? Int64

您访问键(键:值),并将其强制转换为int,让您的可用磁盘空间。



Answer 7:

硬盘设备制造商,使用方法:

1GB = 1000MB

1MB = 1000 KB等

如果你看到在Windows中一个8GB的U盘总是显示比实际更小的空间(如7,8 GB),因为它被认为是1 GB = 1024 MB)。 在OSX同一个U盘8GB是(实)。

所以(freeSpace / 1073741824)必须是(freeSpace / 1000000000)

至少在OSX



文章来源: How do you find how much disk space is left in Cocoa?