GScan icon indicating copy to clipboard operation
GScan copied to clipboard

--time=TIME 搜索指定时间内主机改动过的所有文件,硬编码时间,参数无效

Open stu0lea opened this issue 9 months ago • 0 comments

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()

stu0lea avatar Apr 14 '25 08:04 stu0lea