Browse Source

add DepotFile.is_executable

pull/309/head
Rossen Georgiev 4 years ago
parent
commit
ca051e18e3
  1. 5
      steam/core/manifest.py

5
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

Loading…
Cancel
Save