9
9

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 5 years have passed since last update.

AndroidでDCIM、Pictureディレクトリのパスを取得する

Posted at

概要

AndroidでDCIM,Pictureディレクトリのパスを取得する方法の備忘録です。

Environmentクラス

パッケージ

import android.os.Environment;

Android端末の各環境変数を管理するクラス。
Environment.getExternalStorageDirectory()で内部ストレージのパスが取得できる。

DCIM

Environment.getExternalStorageDirectory() + "/" + Environment.DIRECTORY_DCIM + "/";

Picture

Environment.getExternalStorageDirectory() + "/" + Environment.DIRECTORY_PICTURES + "/";
9
9
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
9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?