Skip to content

xlevus/StagFS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

StagFS : (C) 2009 Chris Targett : chris@xlevus.net 

StagFS - Standalone tag File System

StagFS is a FUSE file system designed to store and represent supplementary data 
against files and folders.

Data is stored in JSON .stag files contained within the files directory.

Notes:
 * Filenames are relative to the .stag file.
 * Nested tag-sets are not yet supported.
 * You cannot have multiple data types in one .stag file

JSON layout:
    {
        "data_type": "data-type",
        "files": {
            "filename1": {
                "tag-set1": "single-tag",
                "tag-set2": ["multiple-tag1", "multiple-tag2", ...],
                "tag-set3": ["other-multiple-tag"]
            },
            "filename2": {
                "tag-set1": ["multiple-tag2"],
                "tag-set3": ["other-multiple-tag"]
            },
            ...
        }
    }

Resulting file tree:
    data-type/
        tag-set1/
            single-tag/
                filename1
        tag-set2/
            multiple-tag1/
                filename1
            multiple-tag2/
                filename1
                filename2
        tag-set3/
            other-multiple-tag/
                filename1
                filename2

About

Proof of concept non hierarchical FUSE file system deriving structure from independent tag files.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages