Obsidianの保管庫(Vault)とはWhat is an Obsidian vault?
「保管庫」という名前のせいで、独自の入れ物や専用形式を想像しがちです。実際はあなたが選んだ普通のフォルダそのもので、Obsidianはそこに設定用のフォルダを1つ足すだけです。このページでは、空のフォルダを実際に保管庫として開き、何が・何バイト作られたかをファイルシステムで数えました。The word "vault" suggests a proprietary container. It is an ordinary folder you picked, and Obsidian adds exactly one settings directory to it. For this page we opened an empty folder as a vault and counted, byte for byte, what appeared on disk.
Obsidianの保管庫(Vault)とは何ですか?What is an Obsidian vault?
あなたが選んだ普通のフォルダそのものです。独自のファイル形式もデータベースもなく、Obsidianはそこに .obsidian という設定用フォルダを1つ足すだけで、ノートは素のMarkdownファイルとしてフォルダに並びます。
空のフォルダを実際に保管庫として開いて数えたところ、作られたのは .obsidian/ 直下のJSONファイル4つ・合計5,543バイトだけで、Markdownファイルは0件でした。
It is an ordinary folder you chose. There is no proprietary format and no database — Obsidian adds a single .obsidian settings directory, and your notes sit in the folder as plain Markdown files.
Opening an empty folder as a vault produced exactly four JSON files totalling 5,543 bytes under .obsidian/, and zero Markdown files.
実測 — 空のフォルダを保管庫にすると何が作られるかMeasured: what appears when an empty folder becomes a vault
空のディレクトリを1つ用意し、Obsidian 1.13.7(Linux版)にそれを保管庫として開かせて、直後の中身を find で列挙しました。結果がこれです。We created one empty directory, had Obsidian 1.13.7 (Linux build) open it as a vault, and listed the result with find. This is all of it.
vault-demo/
└── .obsidian/
├── app.json
├── appearance.json
├── core-plugins.json
└── workspace.json
| ファイルFile | サイズSize | 何が入っているかWhat it holds |
|---|---|---|
app.json | 2 | 中身は {}。既定から変えた設定だけが書かれるLiterally {} — only settings you changed get written |
appearance.json | 2 | 同じく {}。テーマやフォントを変えると増えるAlso {} — grows once you change theme or font |
core-plugins.json | 696 | コア機能31個のON/OFF(既定でON 21・OFF 10)On/off for 31 core features (21 on, 10 off by default) |
workspace.json | 4,843 | 開いていたペインの配置。4つのうちこれだけが大きいPane layout. The only large one of the four |
| 合計Total | 5,543 | 単位はバイト。ノート本体は1バイトも含まれないBytes. Not one byte of it is your notes |
5,543バイトは、短いメモ1枚ぶんにも満たない量です。そしていちばん大きいファイルがUIの状態(どのペインを開いていたか)だという事実が、保管庫の性格をよく表しています。Obsidianは索引もデータベースも保管庫に置いていません。5,543 bytes is less than one short note. And the fact that the largest of the four is UI state — which panes were open — says what a vault is. Obsidian keeps no index and no database in there.
ここから言えること — 削除・移動・同期What follows: deleting, moving, syncing
.obsidian を消してもノートは消えないDeleting .obsidian does not touch your notes中身は設定とUIの状態だけで、ノート本体は含まれていません。消して開き直せば、設定が既定に戻り、ペインの配置が失われるだけです。It holds settings and UI state only. Delete it, reopen, and you are back to defaults with your pane layout gone — nothing else.
エクスポート機能は要りません。コピー先で「フォルダを開く」を選べば、そのまま保管庫として認識されます。これが独自DBのアプリとの決定的な差です。No export step. Point Obsidian at the copy with "Open folder as vault" and it is a vault again. This is the decisive difference from apps with their own database.
workspace.json だけ性格が違うworkspace.json is the odd one out across devices4,843バイトのほぼ全部が「どのペインをどう開いていたか」です。画面の広さが違う端末で共有する意味は薄く、この1ファイルだけ同期対象から外す選び方があります。Nearly all of its 4,843 bytes describe which panes were open and how. Sharing that between devices with different screen sizes buys little, so some people exclude just this file from sync.
既存の空フォルダを開いた今回はMarkdownが0件でした。一方「新しい保管庫を作成」で作ると初期ノートが1件置かれます(実画面の記録)。既にファイルがあるフォルダなら後者を選ばないこと。Opening an existing empty folder produced zero Markdown files. "Create new vault" instead drops in a starter note (screenshots). If the folder already has files, do not use the latter.
core-plugins.json の中身 — 既定でOFFの10個Inside core-plugins.json: the 10 that ship off
696バイトの正体は、Obsidianに最初から入っているコア機能のON/OFF表です。実測では31個が並び、既定でON 21個・OFF 10個でした。追加インストールなしで設定から切り替えられるので、「その機能を探してプラグインを入れる」前にここを見る価値があります。OFFだったのは次の10個です。Those 696 bytes are an on/off table for the features Obsidian ships with. We counted 31 of them — 21 on, 10 off by default. They need no install, so it is worth checking here before hunting for a community plugin. These ten start off:
footnotes slash-command markdown-importer
zk-prefixer random-note slides
audio-recorder workspaces publish
webviewer
これはコミュニティプラグイン(2026年8月21日時点で6,812個)とは別物です。総数の推移とダウンロード数トップ10の実測はプラグイン入門ページにまとめました。These are separate from community plugins (6,812 of them as of August 21, 2026). The registry-count trend and a measured top-10-by-downloads list live on our plugins page.
フォルダだと分かった次の問題 — そこへ入れる速さOnce it is just a folder: how fast can you get into it?
保管庫がただのフォルダなら、「そこに1行足す」のは本来かんたんなはずです。ところが実際にiPhoneでやると、アプリを開いて同期を待って日付のノートを探して、という手数が挟まります。Obsidian連携シンプルメモは、送信したメモを自分宛メールに残しつつ、iCloud Drive上の保管庫フォルダのデイリーノートへ直接追記します。SiriやApple Watchからも入ります。書き込む先は素のMarkdownファイルなので、この記事で見たとおりアプリをやめても残るのはあなたのフォルダです。If a vault is just a folder, adding one line to it ought to be easy. On an iPhone it rarely is: open the app, wait for sync, find today's note. Simple Memo emails each note to you and appends it straight into the daily note inside your vault folder on iCloud Drive, including from Siri and Apple Watch. It writes plain Markdown, so — exactly as measured above — what survives you dropping the app is your own folder.
よくある質問FAQ
Obsidianの保管庫(Vault)とは何ですか?What is an Obsidian vault?
.obsidianと、その直下のJSON 4つ(app.json・appearance.json・core-plugins.json・workspace.json)だけで、合計5,543バイトでした。An ordinary folder you picked — no proprietary format, no database. Opening an empty folder with Obsidian 1.13.7 produced only .obsidian and four JSON files inside it (app.json, appearance.json, core-plugins.json, workspace.json) totalling 5,543 bytes..obsidianフォルダを削除するとノートは消えますか?Does deleting .obsidian delete my notes?
app.json 2バイト({})、appearance.json 2バイト(同じく{})、core-plugins.json 696バイト、workspace.json 4,843バイトです。消しても設定が既定に戻り、ペインの配置が失われるだけです。No. It holds settings and UI state only — not one byte of it is your notes. Measured: app.json 2 bytes ({}), appearance.json 2 bytes (also {}), core-plugins.json 696 bytes, workspace.json 4,843 bytes. Delete it and you lose defaults and your pane layout, nothing more.保管庫を別のパソコンへ移すには?How do I move a vault to another machine?
workspace.json だけは中身のほぼ全部が「どのペインをどう開いていたか」なので、画面の広さが違う端末へ持っていく意味は薄く、この1ファイルを外す選び方もあります。Copy the folder. There is no export step — point Obsidian at the copy with "Open folder as vault". The one file worth thinking about is workspace.json, almost all of which describes which panes were open; carrying that to a device with a different screen buys little, so some people leave it behind.既存のフォルダを保管庫にすると、中身に何か足されますか?Does making an existing folder a vault add anything?
.obsidian 以外は何も足されません。実測でも、空のフォルダを開いた直後のMarkdownは0件でした。一方「新しい保管庫を作成」から作った場合は初期ノートが1件置かれます(実画面の記録)。既にファイルが入っているフォルダなら、必ず「フォルダを開く」の側を選んでください。Nothing but .obsidian. Opening an empty folder left zero Markdown files. "Create new vault" instead drops in a starter note (screenshots). If your folder already holds files, always take the "open folder" path.core-plugins.json には何が書かれていますか?What is in core-plugins.json?
検証日: 2026年8月20日 / 対象: Obsidian 1.13.7(公式Linux AppImage・X-AppImage-Version で確認)/ 環境: Linux(Ubuntu 24.04・Xvfb上のヘッドレス)。空のディレクトリを1つ用意してObsidianに保管庫として開かせ、直後の中身を find と ls -l で列挙・計測した値をそのまま載せています。Windows版・macOS版・iOS版では実行していません(保管庫の構造はプラットフォーム非依存とされていますが、本ページで確かめたのはLinux版です)。「新しい保管庫を作成」した場合の挙動は別ページで2026年8月11日にObsidian 1.13.6で確認したもので、今回の再検証には含みません。バージョンにより既定値は変わりえます。Tested August 20, 2026 — Obsidian 1.13.7 (official Linux AppImage, confirmed via X-AppImage-Version) on Ubuntu 24.04 running headless under Xvfb. We created one empty directory, had Obsidian open it as a vault, and report exactly what find and ls -l showed afterwards. Windows, macOS and iOS builds were not exercised; the vault layout is understood to be platform-independent, but what we checked is the Linux build. The "create new vault" behaviour comes from a separate page, measured on 2026-08-11 with Obsidian 1.13.6, and was not re-tested here. Defaults can change between versions.
関連ページRelated pages
参考文献・データの出典References & data sources
- obsidianmd/obsidian-releases(GitHub) — Obsidian公式の配布元。本ページで動かした 1.13.7 の AppImage はここから取得し、
desktop-releases.jsonのlatestVersionが 1.13.7 であることを2026-08-20に確認Obsidian's official distribution. The 1.13.7 AppImage used here came from it;desktop-releases.jsonlistedlatestVersion1.13.7 on 2026-08-20 - Obsidian Help — 保管庫の考え方と、コアプラグイン/コミュニティプラグインの区別についての公式ヘルプOfficial help on what a vault is and how core plugins differ from community ones
- Obsidianの始め方(当サイト) — 「新しい保管庫を作成」した場合に初期ノートが作られることの実画面記録(2026-08-11・Obsidian 1.13.6)Our screenshots of the "create new vault" path producing a starter note (2026-08-11, Obsidian 1.13.6)
- Obsidian比較ハブ(当サイト) — コミュニティプラグイン数の実カウントと、正本の置き場所で比較先を分ける考え方Our community-plugin counts and the "where does the source of truth live" framing
- Obsidian連携シンプルメモ — App Store — App StoreのダウンロードページApp Store download page
ObsidianはDynalist Inc.の商標です。本サイトはObsidianプロジェクトと提携関係にない独立メディアで、Obsidian連携シンプルメモは株式会社ユリカが開発する独立アプリです。Obsidian is a trademark of Dynalist Inc. This site is independent of the Obsidian project; Simple Memo - for Obsidian is an independent app by Yurica Inc.