3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

[Swift]ディレクトリ内のファイル・ディレクトリを一覧表示するサンプルコード

Posted at

やりたいこと

Swiftのファイル操作系、たまにしか使わなくて忘れてしまうので、備忘のためのサンプルコードを書いておきたいので書きます。
この記事では temporaryDirectory内のファイル・ディレクトリ一覧を表示する処理を記載する。
(サブディレクトリ以下表示なし、隠しファイル表示なし)

temporaryDirectoryのファイル一覧サンプルコード

func printFiles() {
        do {
            let tempDirContentsUrls = try FileManager.default.contentsOfDirectory(at: FileManager.default.temporaryDirectory, includingPropertiesForKeys: nil, options: [.skipsHiddenFiles, .skipsSubdirectoryDescendants])
            
            tempDirContentsUrls.forEach { url in
                print(url)
            }
        } catch {
            print(error.localizedDescription)
        }
    }

動作確認環境

Xcode: 13.4.1
iOS: 15.6.1

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?