9 lines
216 B
Python
9 lines
216 B
Python
import sys
|
|
import os
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
from Convention.Runtime.File import *
|
|
|
|
first = ToolFile("E:/dev/")
|
|
second = ToolFile("/analyze/")
|
|
print(first|second) |