web-dev-qa-db-ja.com

NSFileManagerはディレクトリの内容を削除します

ディレクトリ自体を削除せずにディレクトリの内容をすべて削除するにはどうすればよいですか?私は基本的にフォルダを空にしたいが、それはそのままにしておくべきだ(そしてパーミッションも)。

34
Vervious

例えば。ディレクトリ列挙子を使用して:

NSFileManager *fileManager = [[NSFileManager alloc] init];
NSDirectoryEnumerator *enumerator = [fileManager enumeratorAtPath:path];    
NSString *file;

while (file = [enumerator nextObject]) {
    NSError *error = nil;
    BOOL result = [fileManager removeItemAtPath:[path stringByAppendingPathComponent:file] error:&error];

    if (!result && error) {
        NSLog(@"Error: %@", error);
    }
}

Swift

let fileManager = NSFileManager.defaultManager()
let enumerator = fileManager.enumeratorAtURL(cacheURL, includingPropertiesForKeys: nil, options: nil, errorHandler: nil)

while let file = enumerator?.nextObject() as? String {
    fileManager.removeItemAtURL(cacheURL.URLByAppendingPathComponent(file), error: nil)
}
83
Georg Fritzsche

これを試して:

NSFileManager *manager = [NSFileManager defaultManager];
NSString *dirToEmpty = ... //directory to empty
NSError *error = nil;
NSArray *files = [manager contentsOfDirectoryAtPath:dirToEmpty 
                                              error:&error];

if(error) {
  //deal with error and bail.
}

for(NSString *file in files) {
    [manager removeItemAtPath:[dirToEmpty stringByAppendingPathComponent:file]
                        error:&error];
    if(error) {
       //an error occurred...
    }
}    
11
Jacob Relkin

Swift 2.0:

if let enumerator = NSFileManager.defaultManager().enumeratorAtPath(dataPath) {
  while let fileName = enumerator.nextObject() as? String {
    do {
        try NSFileManager.defaultManager().removeItemAtPath("\(dataPath)\(fileName)")
    }
    catch let e as NSError {
      print(e)
    }
    catch {
      print("error")
    }
  }
}
5
Max

迅速なカット/ペーストのために必要な場合はSwift 3

let fileManager = FileManager.default
let fileUrls = fileManager.enumerator(at: folderUrl, includingPropertiesForKeys: nil)
while let fileUrl = fileUrls?.nextObject() {
    do {
        try fileManager.removeItem(at: fileUrl as! URL)
    } catch {
        print(error)
    }
}
3
Travis M.

Swift 2.1.1

public func deleteContentsOfFolder()
{
    // folderURL
    if let folderURL = self.URL()
    {
        // enumerator
        if let enumerator = NSFileManager.defaultManager().enumeratorAtURL(folderURL, includingPropertiesForKeys: nil, options: [], errorHandler: nil)
        {
            // item
            while let item = enumerator.nextObject()
            {
                // itemURL
                if let itemURL = item as? NSURL
                {
                    do
                    {
                        try NSFileManager.defaultManager().removeItemAtURL(itemURL)
                    }
                    catch let error as NSError
                    {
                        print("JBSFile Exception: Could not delete item within folder.  \(error)")
                    }
                    catch
                    {
                        print("JBSFile Exception: Could not delete item within folder.")
                    }
                }
            }
        }
    }
}
3
John Bushnell

contentsOfDirectoryAtPath:error:のドキュメントには次のように書かれています。

検索は浅いため、サブディレクトリの内容は返されません。この返された配列には、現在のディレクトリ( "。")、親ディレクトリ( "..")、またはリソースフォーク( "._"で始まる)の文字列は含まれず、シンボリックリンクを通過しません。

したがって:

---( file != @"." && file != @".." )---

無関係です。

2
Mark Perkins

次のようにNSFileManagerを拡張できます。

_extension NSFileManager {
  func clearFolderAtPath(path: String) -> Void {
      for file in subpathsOfDirectoryAtPath(path, error: nil) as? [String] ?? []  {
          self.removeItemAtPath(path.stringByAppendingPathComponent(file), error: nil)
      }
  }
}
_

その後、次のようにフォルダーをクリアできます:NSFileManager.defaultManager().clearFolderAtPath("the folder's path")

2
KaKa

Swiftに対するGeorg Fritzscheの回答は私には機能しませんでした。列挙されたオブジェクトを文字列として読み取る代わりに、NSURLとして読み取ります。

let fileManager = NSFileManager.defaultManager()
let url = NSURL(string: "foo/bar")
let enumerator = fileManager.enumeratorAtURL(url, includingPropertiesForKeys: nil, options: nil, errorHandler: nil)
while let file = enumerator?.nextObject() as? NSURL {
    fileManager.removeItemAtURL(file, error: nil)
}
1
jathu

ディレクトリ全体を削除して、後で再作成しませんか?削除する前にファイルの属性と権限を取得し、同じ属性で再作成してください。

0
Psycho