Setting up Obsidian with iCloud

How to sync your Obsidian vault with iCloud

On an iPhone and a Mac, iCloud needs no extra subscription and no extra app. Two things matter: putting the vault in the right place and keeping its files on the device. Here is the setup, taken from Obsidian's own documentation (the method comparison is not repeated here).

How do I sync Obsidian with iCloud?

SHORT ANSWER

Turn on iCloud Drive, then create the vault inside the "Obsidian" folder in iCloud Drive. On iPhone that means toggling "Store in iCloud" while creating the vault; on Mac it means picking the Obsidian folder inside iCloud Drive in the file picker.

On the second device, choose "Open folder as vault" and point it at the same folder. What Obsidian's documentation warns about is the location: create it outside iCloud Drive/Obsidian/[Your Vault Name] and you will hit syncing issues.

Step 1: Turn on iCloud Drive

It's usually already on, but check. With it off you can still create the folder — it just never syncs.

  1. iPhone / iPad
    Settings → [Your Name] → iCloud → iCloud Drive.
  2. Mac
    System Settings → Apple ID → iCloud → iCloud Drive.

Step 2: Create the vault inside iCloud

Do this once, on your first device. Either platform works, but the flow differs: iPhone gives you a toggle, Mac makes you pick the folder yourself.

Creating it on iPhone / iPad

  1. Open Obsidian and tap Create new vault.
  2. Enter a name for the vault.
  3. Toggle on "Store in iCloud". This is the whole trick. Leave it off and the vault stays on that one device.
  4. Tap Create.

Creating it on Mac

  1. Open Obsidian and choose Create new vault.
  2. In the file picker, navigate to iCloud Drive → Obsidian.
  3. Create a folder for the vault and name it.
  4. Select Create to finish.
WHY INSIDE THE "OBSIDIAN" FOLDER

iCloud Drive gives apps their own area. The "Obsidian" folder carrying the app's icon is that area, and it is where Obsidian on iOS reads and writes. A plain folder you created yourself with the same name is a different thing — Obsidian's documentation says in so many words: do not use the plain folder without the app icon.

Step 3: Open the same vault on your second device

On the second device you do not create a vault — you open the existing folder. Creating one here leaves you with two vaults of the same name sitting side by side.

  1. Open Obsidian on the other Mac or iPhone.
  2. Open the vault switcher and choose Open folder as vault.
  3. Navigate to iCloud Drive → Obsidian and select the vault folder you created on the first device.

Three traps, and that's mostly the list

"iCloud sync isn't working" usually isn't about the steps. It's one of three things — location, offloading, or layering — and Obsidian's own documentation calls out all three by name.

TRAP 1

The vault sits outside the "Obsidian" folder

The correct location is iCloud Drive/Obsidian/[Your Vault Name]. A vault created directly in iCloud Drive, or inside Documents, either isn't visible to Obsidian on iOS or causes syncing problems. Here's how to check.

  1. Open the Files app on iPhone.
  2. Tap Browse, then select iCloud Drive under Locations.
  3. Confirm the vault is inside the Obsidian folder. If it's somewhere else, move it in.
TRAP 2

iCloud has offloaded the files

iCloud can push the contents of unused files off the device and keep them only in the cloud. Obsidian reads the vault's files directly, so when the contents aren't there, the files read as missing. The official FAQ states plainly that this offloading causes sync issues. The fix depends on your macOS version.

Environment What to do Scope
macOS 15 (Sequoia) or later Right-click the Obsidian folder in iCloud Drive and choose Keep Downloaded Only the Obsidian folder
macOS 14 (Sonoma) or earlier Turn Optimize Mac Storage off in iCloud settings All iCloud storage on that device

Obsidian's documentation calls this optional but strongly recommended for keeping load times fast. Note that on macOS 14 and earlier the switch reaches beyond Obsidian — it affects everything iCloud stores on that Mac.

TRAP 3

Two sync methods layered on one vault

Obsidian's documentation has a dedicated note — avoid mixing sync services — telling you not to sync one vault through several services at once, giving Obsidian Sync plus iCloud as the example. The reason is data conflicts and corruption. If you're on iCloud and want to try the official Sync, move to one or the other rather than running both.

For the same reason, skip iCloud Drive on Windows. The documentation lists iCloud's recommended systems as macOS, iOS, and iPadOS, and states that iCloud Drive on Windows may lead to file duplication or corruption. If Windows or Android is in your mix, iCloud isn't the method to pick.

iCloud carries the whole folder, settings included

A vault is just a folder, and alongside your Markdown files it holds a .obsidian folder with your settings. iCloud Drive syncs at the folder level, so your settings ride along with your notes. For most people that's the convenient default — same theme, same hotkeys, both devices.

If you'd rather keep settings separate per device, the documentation points to a per-device configuration folder feature. (The Syncthing section says to exclude .obsidian from syncing when you want separate settings — which is also confirmation that settings live inside the vault.) iCloud has no exclude list, so on iCloud that feature is the way to do it.

Is the Japanese documentation the same as the English?

Translated docs can lag the English original, so we pulled both on the day this article was written and compared them. They match. Reading the Japanese version is fine.

Compared English Japanese
Headings (h2/h3) 10 10 (1:1)
Callouts 12 12
Contents of the iCloud section Steps, location warning, keep-downloaded Same (terms map across)
File size 12,796 bytes 17,355 bytes

The byte difference is UTF-8 (Japanese characters take three bytes), not a difference in content. The official repository states that the English locale is the source of truth and that every page should exist 1:1 in every locale — so when in doubt, the English page is the one to check.

Writing into an iCloud vault from outside Obsidian

A vault synced through iCloud is still just a folder, so other apps can write into it. But it is a folder where iCloud's sync process and Obsidian itself are already touching the same files, so a careless write drops data. Here is what Simple Memo actually does about that, straight from the implementation.

📁 Pick the folder once
You pick the vault folder once in the Files picker and the app keeps that access as a bookmark. After that it appends without opening Obsidian. The requirement: the folder lives in iCloud Drive or On My iPhone and is reachable from the Files app.
📝 Where it writes
It appends one line to that day's daily note yyyy-MM-dd.md, or to a fixed Inbox note <Inbox>.md, creating the file if it isn't there. More on appending to the daily note in its own page.
🤝 Writing without racing iCloud
Writes go through NSFileCoordinator — Apple's own mechanism for coordinating reads and writes with other processes such as iCloud's sync daemon and Obsidian itself, so simultaneous access doesn't lose an entry. Rapid-fire sends are serialized on a dedicated queue.
When the write can't happen
A note that can't be written right then is queued on the device and appended with its original timestamp the next time the app comes to the foreground. Queued text is stored encrypted with AES-GCM. Because iCloud has to sync, expect a few seconds before it shows up in Obsidian.
Pick the vault once, then just write

Free to download. Setup is picking your vault folder in iCloud Drive, once.

Download on the App Store
QR code to download on the App Store On desktop? Scan with your phone

FAQ

Where in iCloud Drive should the vault live?
Not at the top level of iCloud Drive — inside the "Obsidian" folder within it. The official documentation spells out iCloud Drive/Obsidian/[Your Vault Name], tells you to use the folder carrying the Obsidian app icon, and warns against the plain folder without it. Check in the Files app: Browse → iCloud Drive, and confirm your vault is inside the Obsidian folder.
Notes look empty or stale on my iPhone
iCloud may have offloaded the files. The official FAQ explains that when services offload content — iCloud's Optimize Mac Storage, OneDrive's Files On-Demand — Obsidian can't access the files and sync problems follow. On macOS 15 and later, right-click the Obsidian folder and choose Keep Downloaded; on macOS 14 and earlier, turn off Optimize Mac Storage.
Can I run iCloud and Obsidian Sync together?
The official documentation says to avoid mixing sync services, naming Obsidian Sync plus iCloud as the example, to prevent data conflicts and corruption. Keep one sync method per vault. For a comparison of the methods themselves, see our sync methods overview.
Does iCloud Drive on Windows work?
The official documentation lists iCloud's recommended systems as macOS, iOS, and iPadOS, and states that iCloud Drive on Windows may lead to file duplication or corruption. If Windows or Android needs to be in the loop, pick a different sync method.
Can Simple Memo write into an iCloud vault?
Yes. Pick a folder reachable from the Files app once, and from then on it appends to that day's daily note (yyyy-MM-dd.md) or your Inbox note without opening Obsidian. Writes go through NSFileCoordinator so they don't race iCloud's sync process or Obsidian itself. Because iCloud has to sync, there's a few-second lag before it appears in Obsidian.
TEST ENVIRONMENT & SCOPE

Checked August 27, 2026, on Linux (no macOS or iOS hardware here). Hands-on (actually fetched and compared in this session): the English source en/Getting started/Sync your notes across devices.md (12,796 bytes) and the Japanese ja/はじめに/デバイス間でノートを同期する.md (17,355 bytes) were pulled directly from Obsidian's documentation repository obsidianmd/obsidian-help, and their 10 headings and 12 callouts were matched 1:1 programmatically. The steps and warnings quoted above come from that source. Based on official documentation (not verified on device): the iPhone/Mac settings paths, the behavior of Keep Downloaded and Optimize Mac Storage, and the Windows caveat — all documented by Obsidian, none of it confirmed on screen here. First-party (our own implementation): how Simple Memo writes (appending via NSFileCoordinator, the target filenames, AES-GCM encryption of the on-device queue) is taken from the app's implementation. Not testable in this environment: actual iCloud Drive sync and conflict behavior (no macOS/iOS). Conflict behavior is covered in our sync methods overview, where iCloud is likewise untested on device. Documentation changes over time — check the official site for the current version.

Related pages

References