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