Files
InjectLib/Utils.rb

12 lines
182 B
Ruby
Raw Normal View History

2023-08-26 01:14:35 +08:00
# frozen_string_literal: true
# 检查文件是否存在
# 参数:
# file_path 文件路径
# 返回值:
# 是否存在
def file_exist?(file_path)
File.exist?(file_path)
end