文件操作 - document_stream.rb
返回文件管理
返回主菜单
删除本文件
文件: /opt/alt/ruby25/lib64/ruby/2.5.0/psych/handlers/document_stream.rb
编辑文件内容
# frozen_string_literal: true require 'psych/tree_builder' module Psych module Handlers class DocumentStream < Psych::TreeBuilder # :nodoc: def initialize &block super @block = block end def start_document version, tag_directives, implicit n = Nodes::Document.new version, tag_directives, implicit push n end def end_document implicit_end = !streaming? @last.implicit_end = implicit_end @block.call pop end end end end
修改文件时间
将文件时间修改为当前时间的前一年
删除文件