2025-07-09 17:39:50 +08:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2025-09-20 03:39:51 +08:00
|
|
|
from Convention.Runtime.File import *
|
2025-07-10 15:08:20 +08:00
|
|
|
|
2025-09-20 03:39:51 +08:00
|
|
|
first = ToolFile("E:/dev/")
|
|
|
|
second = ToolFile("/analyze/")
|
|
|
|
print(first|second)
|