GScan
GScan copied to clipboard
--time=TIME 搜索指定时间内主机改动过的所有文件,硬编码时间,参数无效
class Search_File:
def __init__(self, time):
# self.time = time.strip()
self.time = '2019-05-07 12:00:00~2019-05-07 17:00:00'
-time参数指定的时间被固定为 '2019-05-07 12:00:00~2019-05-07 17:00:00'
应改为:
class Search_File:
def __init__(self, time):
self.time = time.strip()