How to open .DVC files on iOS

To open .DVC files on iOS, if it is a DVC metadata file, you may be able to view it as plain text in a code/text viewer app, but to actually use it (retrieve the data it references) transfer it to a desktop and use DVC there.

Step-by-step instructions

  1. If it is a DVC metadata file, you may be able to view it as plain text in a code/text viewer app, but to actually use it (retrieve the data it references) transfer it to a desktop and use DVC there.

Alternative methods

  • Open .DVC in a browser-based viewer if desktop apps fail.
  • Try opening .DVC on iOS with a secondary app to rule out app-specific issues.
  • Convert .DVC only with trusted tools when direct opening is not possible.

Common issues

The .DVC file opens as unreadable characters

This often means it is not a DVC metadata text file, but a different .dvc format such as a GIS vector data file (e.g., IDRISI Vector).

  1. Confirm where the file came from (a DVC repository vs. a GIS workflow) and check for surrounding project files that indicate DVC usage.
  2. If it is from GIS/IDRISI workflows, open it with the originating/compatible GIS software rather than a text editor.

You can read the .DVC file but the data it references is missing

In DVC projects, the .dvc file is metadata; the actual data may live in remote storage and won’t appear until you fetch/checkout it with DVC.

  1. Use the DVC tool in the correct project directory to retrieve the tracked artifact according to your project’s DVC setup.
  2. Make sure you have access to the project’s configured storage/remote used for DVC-tracked data.

Double-clicking does nothing or opens the wrong app

Operating systems don’t always associate .dvc files with a specific program, and the extension is used by more than one format.

  1. Open the file in a text editor first to determine whether it looks like human-readable metadata (common for DVC).
  2. If it is a DVC metadata file, keep editing/viewing in a text editor and manage it with the DVC tool rather than relying on file association.

Security note

.dvc files used by DVC are typically human-readable metadata; treat them like configuration files and review changes (especially in shared repos) before using them to pull or reproduce data.

Back to .DVC extension page