From ca051e18e393389a5c6ecf207461b0f63c6c35f9 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Thu, 11 Feb 2021 22:33:52 +0000 Subject: [PATCH] add DepotFile.is_executable --- steam/core/manifest.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/steam/core/manifest.py b/steam/core/manifest.py index 8bea8ab..fd76121 100644 --- a/steam/core/manifest.py +++ b/steam/core/manifest.py @@ -112,6 +112,11 @@ class DepotFile(object): """:type: bool""" return not self.is_directory and not self.is_symlink + @property + def is_executable(self): + """:type: bool""" + return self.flags & EDepotFileFlag.Executable > 0 + class DepotManifest(object): DepotFileClass = DepotFile