2025-07-09 17:39:50 +08:00
|
|
|
import sys
|
|
|
|
import os
|
2025-09-30 10:40:58 +08:00
|
|
|
from time import sleep
|
2025-07-09 17:39:50 +08:00
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2025-10-14 17:09:04 +08:00
|
|
|
from Convention.Runtime.File import *
|
2025-09-30 10:40:58 +08:00
|
|
|
|
2025-10-14 17:09:04 +08:00
|
|
|
file = ToolFile("[Test]")|"temp"|None
|
|
|
|
print(file.MustExistsPath())
|
2025-07-10 15:08:20 +08:00
|
|
|
|