Xfce Wiki

Sub domains
 
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


Next revision
thunar:dev:gio_metadata [2020/06/25 11:06] – created alexxcons
Line 1: Line 1:
  
 +   gio info -a 'metadata::*' $HOME
 +
 +
 +   $ touch /tmp/myfile
 +   $ gio info -a 'metadata::*' /tmp/myfile
 +      attributes:
 +   $ gio set attribute -t string /tmp/myfile 'metadata::mynote' 'Please remember to delete this file!'
 +   $ gio info -a 'metadata::*' /tmp/myfile
 +      attributes:
 +         metadata::mynote: Please remember to delete this file!
 +   $ gio move /tmp/myfile /tmp/newfile
 +   $ gio info -a 'metadata::*' /tmp/newfile
 +      attributes:
 +         metadata::mynote: Please remember to delete this file!
 +  
 +(Info from [[https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/desktop_migration_and_administration_guide/using-gvfs-metadata|here]])