mirror of
https://github.com/izzy2lost/Diddy-Kong-Racing.git
synced 2026-06-19 01:16:26 -07:00
Split /data/dkr.data.s into smaller rodata .s files
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
from os import chdir, listdir, remove
|
||||
from os.path import dirname, isfile, isdir, join, realpath
|
||||
from os.path import dirname, isfile, isdir, join, realpath, exists
|
||||
|
||||
class FileUtil:
|
||||
@staticmethod
|
||||
@@ -61,3 +61,7 @@ class FileUtil:
|
||||
@staticmethod
|
||||
def set_working_dir_to_project_base():
|
||||
chdir(join(dirname(realpath(__file__)), '../..'))
|
||||
|
||||
@staticmethod
|
||||
def does_file_exist(filename):
|
||||
return exists(filename)
|
||||
|
||||
Reference in New Issue
Block a user