文件操作 - vobject
返回文件管理
返回主菜单
删除本文件
文件: /root/.local/share/Trash/files/roundcube/plugins/carddav/vendor/bin/vobject
编辑文件内容
#!/usr/bin/env php <?php namespace Sabre\VObject; // This sucks.. we have to try to find the composer autoloader. But chances // are, we can't find it this way. So we'll do our bestest $paths = [ __DIR__ . '/../vendor/autoload.php', // In case vobject is cloned directly __DIR__ . '/../../../autoload.php', // In case vobject is a composer dependency. ]; foreach($paths as $path) { if (file_exists($path)) { include $path; break; } } if (!class_exists('Sabre\\VObject\\Version')) { fwrite(STDERR, "Composer autoloader could not be loaded.\n"); die(1); } $cli = new Cli(); exit($cli->main($argv));
修改文件时间
将文件时间修改为当前时间的前一年
删除文件