2001-04-19 22:09:25 +00:00
|
|
|
/* -*-objc-*-
|
1997-03-03 20:10:10 +00:00
|
|
|
NSFileManager.h
|
|
|
|
|
1999-06-17 19:09:25 +00:00
|
|
|
Copyright (C) 1997,1999 Free Software Foundation, Inc.
|
1997-03-03 20:10:10 +00:00
|
|
|
|
|
|
|
Author: Mircea Oancea <mircea@jupiter.elcom.pub.ro>
|
|
|
|
Author: Ovidiu Predescu <ovidiu@net-community.com>
|
|
|
|
Date: Feb 1997
|
|
|
|
|
|
|
|
This file is part of the GNUstep Base Library.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
License along with this library; if not, write to the Free
|
1999-09-09 02:56:20 +00:00
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
1997-03-03 20:10:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NSFileManager_h_GNUSTEP_BASE_INCLUDE
|
|
|
|
#define __NSFileManager_h_GNUSTEP_BASE_INCLUDE
|
|
|
|
|
|
|
|
#include <Foundation/NSObject.h>
|
1998-12-03 16:20:31 +00:00
|
|
|
|
|
|
|
#ifndef STRICT_OPENSTEP
|
1997-03-03 20:10:10 +00:00
|
|
|
#include <Foundation/NSUtilities.h>
|
|
|
|
#include <Foundation/NSDictionary.h>
|
|
|
|
|
|
|
|
@class NSNumber;
|
|
|
|
@class NSString;
|
|
|
|
@class NSData;
|
|
|
|
@class NSDate;
|
|
|
|
@class NSArray;
|
|
|
|
@class NSMutableArray;
|
|
|
|
|
|
|
|
@class NSDirectoryEnumerator;
|
|
|
|
|
|
|
|
@interface NSFileManager : NSObject
|
1999-06-18 10:28:11 +00:00
|
|
|
{
|
1999-09-16 07:21:34 +00:00
|
|
|
NSString *_lastError;
|
1999-06-18 10:28:11 +00:00
|
|
|
}
|
1997-03-03 20:10:10 +00:00
|
|
|
|
1999-06-17 19:09:25 +00:00
|
|
|
+ (NSFileManager*) defaultManager;
|
1997-03-03 20:10:10 +00:00
|
|
|
|
1999-06-17 19:09:25 +00:00
|
|
|
- (BOOL) changeCurrentDirectoryPath: (NSString*)path;
|
2002-09-15 07:51:29 +00:00
|
|
|
- (BOOL) changeFileAttributes: (NSDictionary*)attributes
|
|
|
|
atPath: (NSString*)path;
|
|
|
|
- (NSArray*) componentsToDisplayForPath: (NSString*)path;
|
|
|
|
- (NSData*) contentsAtPath: (NSString*)path;
|
|
|
|
- (BOOL) contentsEqualAtPath: (NSString*)path1
|
|
|
|
andPath: (NSString*)path2;
|
1999-06-17 19:09:25 +00:00
|
|
|
- (BOOL) copyPath: (NSString*)source
|
|
|
|
toPath: (NSString*)destination
|
|
|
|
handler: (id)handler;
|
2002-09-15 07:51:29 +00:00
|
|
|
- (BOOL) createDirectoryAtPath: (NSString*)path
|
|
|
|
attributes: (NSDictionary*)attributes;
|
1999-06-17 19:09:25 +00:00
|
|
|
- (BOOL) createFileAtPath: (NSString*)path
|
|
|
|
contents: (NSData*)contents
|
|
|
|
attributes: (NSDictionary*)attributes;
|
2002-09-15 07:51:29 +00:00
|
|
|
- (BOOL) createSymbolicLinkAtPath: (NSString*)path
|
|
|
|
pathContent: (NSString*)otherPath;
|
|
|
|
- (NSString*) currentDirectoryPath;
|
|
|
|
- (NSArray*) directoryContentsAtPath: (NSString*)path;
|
|
|
|
- (NSString*) displayNameAtPath: (NSString*)path;
|
|
|
|
- (NSDirectoryEnumerator*) enumeratorAtPath: (NSString*)path;
|
|
|
|
- (NSDictionary*) fileAttributesAtPath: (NSString*)path
|
|
|
|
traverseLink: (BOOL)flag;
|
1999-06-17 19:09:25 +00:00
|
|
|
- (BOOL) fileExistsAtPath: (NSString*)path;
|
|
|
|
- (BOOL) fileExistsAtPath: (NSString*)path isDirectory: (BOOL*)isDirectory;
|
2002-09-15 07:51:29 +00:00
|
|
|
- (NSDictionary*) fileSystemAttributesAtPath: (NSString*)path;
|
|
|
|
- (const char*) fileSystemRepresentationWithPath: (NSString*)path;
|
1999-06-17 19:09:25 +00:00
|
|
|
- (BOOL) isExecutableFileAtPath: (NSString*)path;
|
|
|
|
- (BOOL) isDeletableFileAtPath: (NSString*)path;
|
2002-09-15 07:51:29 +00:00
|
|
|
- (BOOL) isReadableFileAtPath: (NSString*)path;
|
|
|
|
- (BOOL) isWritableFileAtPath: (NSString*)path;
|
|
|
|
- (BOOL) linkPath: (NSString*)source
|
|
|
|
toPath: (NSString*)destination
|
|
|
|
handler: (id)handler;
|
|
|
|
- (BOOL) movePath: (NSString*)source
|
|
|
|
toPath: (NSString*)destination
|
|
|
|
handler: (id)handler;
|
1999-06-17 19:09:25 +00:00
|
|
|
- (NSString*) pathContentOfSymbolicLinkAtPath: (NSString*)path;
|
2002-09-15 07:51:29 +00:00
|
|
|
- (BOOL) removeFileAtPath: (NSString*)path
|
|
|
|
handler: (id)handler;
|
1999-06-17 19:09:25 +00:00
|
|
|
- (NSString*) stringWithFileSystemRepresentation: (const char*)string
|
|
|
|
length: (unsigned int)len;
|
2002-09-15 07:51:29 +00:00
|
|
|
- (NSArray*) subpathsAtPath: (NSString*)path;
|
1997-03-03 20:10:10 +00:00
|
|
|
|
|
|
|
@end /* NSFileManager */
|
|
|
|
|
|
|
|
|
|
|
|
@interface NSObject (NSFileManagerHandler)
|
1999-06-17 19:09:25 +00:00
|
|
|
- (BOOL) fileManager: (NSFileManager*)fileManager
|
|
|
|
shouldProceedAfterError: (NSDictionary*)errorDictionary;
|
|
|
|
- (void) fileManager: (NSFileManager*)fileManager
|
|
|
|
willProcessPath: (NSString*)path;
|
1997-03-03 20:10:10 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
@interface NSDirectoryEnumerator : NSEnumerator
|
|
|
|
{
|
2001-04-19 22:09:25 +00:00
|
|
|
void *_stack; /* GSIArray */
|
|
|
|
char *_top_path;
|
|
|
|
char *_current_file_path;
|
|
|
|
NSString *(*_stringWithFileSysImp)(id, SEL, char *, unsigned);
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
BOOL isRecursive: 1;
|
|
|
|
BOOL isFollowing: 1;
|
|
|
|
BOOL justContents: 1;
|
|
|
|
} _flags;
|
1997-03-03 20:10:10 +00:00
|
|
|
}
|
|
|
|
|
1999-06-17 19:09:25 +00:00
|
|
|
- (id) initWithDirectoryPath: (NSString*)path
|
|
|
|
recurseIntoSubdirectories: (BOOL)recurse
|
2001-04-19 22:09:25 +00:00
|
|
|
followSymlinks: (BOOL)follow
|
|
|
|
justContents: (BOOL)justContents;
|
1997-03-03 20:10:10 +00:00
|
|
|
|
1999-06-17 19:09:25 +00:00
|
|
|
- (NSDictionary*) directoryAttributes;
|
|
|
|
- (NSDictionary*) fileAttributes;
|
|
|
|
- (void) skipDescendents;
|
1997-03-03 20:10:10 +00:00
|
|
|
|
|
|
|
@end /* NSDirectoryEnumerator */
|
|
|
|
|
|
|
|
/* File Attributes */
|
2000-06-14 04:03:56 +00:00
|
|
|
GS_EXPORT NSString* const NSFileDeviceIdentifier;
|
|
|
|
GS_EXPORT NSString* const NSFileGroupOwnerAccountName;
|
|
|
|
GS_EXPORT NSString* const NSFileDeviceIdentifier;
|
|
|
|
GS_EXPORT NSString* const NSFileModificationDate;
|
|
|
|
GS_EXPORT NSString* const NSFileOwnerAccountName;
|
|
|
|
GS_EXPORT NSString* const NSFilePosixPermissions;
|
|
|
|
GS_EXPORT NSString* const NSFileReferenceCount;
|
|
|
|
GS_EXPORT NSString* const NSFileSize;
|
|
|
|
GS_EXPORT NSString* const NSFileSystemFileNumber;
|
|
|
|
GS_EXPORT NSString* const NSFileSystemNumber;
|
|
|
|
GS_EXPORT NSString* const NSFileType;
|
1998-12-03 16:20:31 +00:00
|
|
|
|
|
|
|
#ifndef STRICT_MACOS_X
|
2000-06-14 04:03:56 +00:00
|
|
|
GS_EXPORT NSString* const NSFileGroupOwnerAccountNumber;
|
|
|
|
GS_EXPORT NSString* const NSFileOwnerAccountNumber;
|
1998-12-03 16:20:31 +00:00
|
|
|
#endif
|
1997-03-03 20:10:10 +00:00
|
|
|
|
|
|
|
/* File Types */
|
|
|
|
|
2000-06-14 04:03:56 +00:00
|
|
|
GS_EXPORT NSString* const NSFileTypeDirectory;
|
|
|
|
GS_EXPORT NSString* const NSFileTypeRegular;
|
|
|
|
GS_EXPORT NSString* const NSFileTypeSymbolicLink;
|
|
|
|
GS_EXPORT NSString* const NSFileTypeSocket;
|
|
|
|
GS_EXPORT NSString* const NSFileTypeFifo;
|
|
|
|
GS_EXPORT NSString* const NSFileTypeCharacterSpecial;
|
|
|
|
GS_EXPORT NSString* const NSFileTypeBlockSpecial;
|
|
|
|
GS_EXPORT NSString* const NSFileTypeUnknown;
|
1997-03-03 20:10:10 +00:00
|
|
|
|
|
|
|
/* FileSystem Attributes */
|
|
|
|
|
2000-06-14 04:03:56 +00:00
|
|
|
GS_EXPORT NSString* const NSFileSystemSize;
|
|
|
|
GS_EXPORT NSString* const NSFileSystemFreeSize;
|
|
|
|
GS_EXPORT NSString* const NSFileSystemNodes;
|
|
|
|
GS_EXPORT NSString* const NSFileSystemFreeNodes;
|
1997-03-03 20:10:10 +00:00
|
|
|
|
|
|
|
/* Easy access to attributes in a dictionary */
|
|
|
|
|
|
|
|
@interface NSDictionary(NSFileAttributes)
|
1998-12-03 16:20:31 +00:00
|
|
|
- (unsigned long long) fileSize;
|
|
|
|
- (NSString*) fileType;
|
|
|
|
- (NSString*) fileOwnerAccountName;
|
|
|
|
- (NSString*) fileGroupOwnerAccountName;
|
|
|
|
- (NSDate*) fileModificationDate;
|
|
|
|
- (unsigned long) filePosixPermissions;
|
|
|
|
- (unsigned long) fileSystemNumber;
|
|
|
|
- (unsigned long) fileSystemFileNumber;
|
|
|
|
|
|
|
|
#ifndef STRICT_MACOS_X
|
|
|
|
- (unsigned long) fileOwnerAccountNumber;
|
|
|
|
- (unsigned long) fileGroupOwnerAccountNumber;
|
|
|
|
#endif
|
1997-03-03 20:10:10 +00:00
|
|
|
@end
|
|
|
|
|
1998-12-03 16:20:31 +00:00
|
|
|
#endif
|
1997-03-03 20:10:10 +00:00
|
|
|
#endif /* __NSFileManager_h_GNUSTEP_BASE_INCLUDE */
|