1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
/*
fmls.m
Copyright (C) 2000 Helge Hess.
All rights reserved.
Author: Helge Hess <helge.hess@mdlink.de>
Date: April 2000
This file is part of libFoundation.
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted, provided
that the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
We disclaim all warranties with regard to this software, including all
implied warranties of merchantability and fitness, in no event shall
we be liable for any special, indirect or consequential damages or any
damages whatsoever resulting from loss of use, data or profits, whether in
an action of contract, negligence or other tortious action, arising out of
or in connection with the use or performance of this software.
*/
/*
This is an example for using the NSFileManager class to remove
files in the filesystem.
*/
#include <Foundation/Foundation.h>
int main(int argc, char **argv, char **env) {
NSArray *args;
NSFileManager *fm;
BOOL ok;
int i;
#if LIB_FOUNDATION_LIBRARY
[NSProcessInfo initializeWithArguments:argv count:argc environment:env];
#endif
args = [[NSProcessInfo processInfo] arguments];
if ([args count] < 1) {
NSLog(@"usage: %@ <files>", [args objectAtIndex:0]);
exit(1);
}
else if ([args count] == 1)
args = [args arrayByAddingObject:@"."];
fm = [NSFileManager defaultManager];
for (i = 1; i < [args count]; i++) {
NSString *path = [args objectAtIndex:i];
BOOL isDir;
path = [args objectAtIndex:i];
if (![fm fileExistsAtPath:path isDirectory:&isDir]) {
NSLog(@"file/directory does not exist: %@", path);
continue;
}
if (isDir) {
NSEnumerator *contents;
NSString *p;
contents = [[[fm directoryContentsAtPath:path]
sortedArrayUsingSelector:@selector(compare:)]
objectEnumerator];
while ((p = [contents nextObject])) {
NSDictionary *info;
NSString *fp;
fp = [path stringByAppendingPathComponent:p];
info = [fm fileAttributesAtPath:fp traverseLink:YES];
if (info == nil) {
NSLog(@"couldn't get info of entry: %@", fp);
continue;
}
/* id uid gid date name */
printf("%8s %8s %8s %8i %8s %s\n",
[[[info objectForKey:NSFileIdentifier] description] cString],
[[info objectForKey:NSFileOwnerAccountName] cString],
[[info objectForKey:NSFileGroupOwnerAccountName] cString],
[[info objectForKey:NSFileSize] intValue],
[[[info objectForKey:NSFileModificationDate] description] cString],
[p cString]);
}
}
else {
}
}
exit(0);
return 0;
}
|