rm">Returns :

Returns the GFileInfo which includes additional information about the filesystem file_info resides on.

thunarx.FileInfo.get_location

    def get_location()

Returns :

Returns the GFile file_info points to. The GFile is a more powerful tool than just the URI or the path.

thunarx.FileInfo.changed

    def changed()

Returns :

Emits the ::changed signal on file_info. This method should not be invoked by Thunar plugins, instead the file manager itself will use this method to emit ::changed whenever it notices a change on file_info.

thunarx.FileInfo.renamed

    def renamed()

Returns :

Emits the ::renamed signal on file_info. This method should not be invoked by Thunar plugins, instead the file manager will emit this signal whenever the user renamed the file_info. The plugins should instead connect to the ::renamed signal and update it's internal state and it's user interface after the file manager renamed a file.

Signal Details

The "changed" thunarx.FileInfo Signal

Emitted whenever the system notices a change to file_info.

Thunar plugins should use this signal to stay informed about changes to a file_info for which they currently display information (i.e. in a thunarx.PropertyPage), and update it's user interface whenever a change is noticed on file_info.

The "renamed" thunarx.FileInfo Signal

Emitted when the file_info is renamed to another name.

For example, within Thunar, ThunarFolder uses this signal to reregister it's VFS directory monitor, after the corresponding file was renamed.