class EL_DIRECTORY_CONSTANTS

(source code)

description

Directory entry type constants

note
	description: "Directory entry type constants"

	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: "2024-04-26 18:24:20 GMT (Friday 26th April 2024)"
	revision: "1"

class
	EL_DIRECTORY_CONSTANTS

feature {NONE} -- Constants

	Type_any: INTEGER = 3

	Type_directory: INTEGER = 2

	Type_executable_file: INTEGER = 4

	Type_file: INTEGER = 1

end