Hi!

I currently stuck, maybe someone can point my into the right direction!

In my app I have to differentiate between USB storage devices formatted with a 
MSDOS-FAT16 or with MSDOS-FAT32 file system. At the moment I use [NSWorkspace 
getFileSystemInfoForPath] to get some information:

BOOL isRemovable;
BOOL isWriteable;
BOOL isUnmountable;
NSString *fileSystemDescription;
NSString *fileSystemType;

[[NSWorkspace sharedWorkspace] getFileSystemInfoForPath:path 
    isRemovable  :&isRemovable 
    isWritable   :&isWriteable 
    isUnmountable:&isUnmountable
    description  :&fileSystemDescription
    type         :&fileSystemType];

Unfortunately both types are reported as "msdos". Is there any way to get the 
entry size of the used file allocation table? In the Finder every info dialog 
of a volume contains this information, so I was really surprised finding the 
mentioned method not differentiating both of them ...

Any hint is appreciated, Matthias


_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to