文件操作 - Password.pm
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/perl5/Debconf/Element/Gnome/Password.pm
编辑文件内容
#!/usr/bin/perl -w # This file was preprocessed, do not edit! package Debconf::Element::Gnome::Password; use strict; use Gtk3; use utf8; use base qw(Debconf::Element::Gnome); sub init { my $this=shift; $this->SUPER::init(@_); $this->adddescription; $this->widget(Gtk3::Entry->new); $this->widget->show; $this->widget->set_visibility(0); $this->addwidget($this->widget); $this->tip( $this->widget ); $this->addhelp; } sub value { my $this=shift; my $text = $this->widget->get_chars(0, -1); $text = $this->question->value if $text eq ''; return $text; } 1
修改文件时间
将文件时间修改为当前时间的前一年
删除文件