mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-04-28 13:24:32 +00:00
12 lines
220 B
Python
12 lines
220 B
Python
#!/usr/bin/env python
|
|
import os
|
|
|
|
def get_sample(filename):
|
|
fullpath = os.path.join("@LIEF_SAMPLES_DIRECTORY@", filename)
|
|
|
|
assert os.path.exists(fullpath)
|
|
assert os.path.isfile(fullpath)
|
|
|
|
return fullpath
|
|
|