Re: UFS can't handle creation date
Re: UFS can't handle creation date
- Subject: Re: UFS can't handle creation date
- From: John Hörnkvist <email@hidden>
- Date: Fri, 20 Sep 2002 15:46:50 +0200
On Friday, September 20, 2002, at 03:22 PM, Development wrote:
I'm trying to copy some files from a source path to a destination path.
If the items to copy already exist at the destination path, I want to
verify the creation dates.
Something like this:
- (NSString*)fileSystemType:(NSString*)fileName
{
struct statfs fs_struct;
statfs([fileName fileSystemRepresentation], &fs_struct);
return [NSString stringWithCString:fs_struct.f_fstypename];
}
Regeards,
John Hvrnkvist
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.