From Wiki96
Jump to: navigation, search
(Created page with ".meta files are found usually in system-generated folders. They contain information and metadata about the folder they're placed in. .meta files are really JSON files. Because they start with a dot, they are also considered hidden files. .meta files were introduced with the release of V2 Service Pack 1. Most .meta files have one property: description, which is a description of the folder. If the description property exists, the description is shown on...")
 
m (Reverted edits by 94.233.241.205 (talk) to last revision by Kelbaz)
Tag: Rollback
 
(2 intermediate revisions by 2 users not shown)
Line 5: Line 5:
Most .meta files have one property: description, which is a description of the folder.
Most .meta files have one property: description, which is a description of the folder.
If the description property exists, the description is shown on the left side of the Explorer window.
If the description property exists, the description is shown on the left side of the Explorer window.
Here is the <code>.meta</code> file content from <code>C:/user</code>:<syntaxhighlight lang="json" line="1">
{
"description": "This is your user folder."
}
</syntaxhighlight>
[[Category:Ext]]
{{DEFAULTSORT:meta_files}}

Latest revision as of 18:35, 16 May 2023

.meta files are found usually in system-generated folders. They contain information and metadata about the folder they're placed in. .meta files are really JSON files. Because they start with a dot, they are also considered hidden files.

.meta files were introduced with the release of V2 Service Pack 1. Most .meta files have one property: description, which is a description of the folder. If the description property exists, the description is shown on the left side of the Explorer window.

Here is the .meta file content from C:/user:

{
	"description": "This is your user folder."
}