class EL_GVFS_REMOVE_FILE_COMMAND

(source code)

Description

GVFS command to remove a file

Notes

GVFS stands for GIO virtual file system

note
	description: "GVFS command to remove a file"
	notes: "[
		GVFS stands for [https://www.commandlinux.com/man-page/man7/gvfs.7.html GIO virtual file system]
	]"

	author: "Finnian Reilly"
	copyright: "Copyright (c) 2001-2022 Finnian Reilly"
	contact: "finnian at eiffel hyphen loop dot com"

	license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
	date: "2023-03-25 11:52:39 GMT (Saturday 25th March 2023)"
	revision: "8"

class
	EL_GVFS_REMOVE_FILE_COMMAND

inherit
	EL_GVFS_URI_COMMAND
		redefine
			ignore
		end

create
	make

feature {NONE} -- Implementation

	ignore (a_error: ZSTRING): BOOLEAN
		do
			Result := is_file_not_found (a_error)
		end

feature {NONE} -- Constants

	Template: STRING = "gvfs-rm $uri"
end