ruby 10KB以下のファイルをtrashedディレクトリに移动する

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby 10KB以下のファイルをtrashedディレクトリに移动する相关的知识,希望对你有一定的参考价值。

# coding: utf-8

require 'find'
require 'fileutils'

Find.find('files') do |f|
  next unless File.file? f
  size = File.size?(f)
  if size.nil? || size < 10000 # 10KB
    puts f
    FileUtils.mv f, 'trashed/'
  end
end

以上是关于ruby 10KB以下のファイルをtrashedディレクトリに移动する的主要内容,如果未能解决你的问题,请参考以下文章

ruby 実行中の.RBファイルがある阶层ディレクトリのフルパスを取得する

markdown ファイルを指すURLに个别のファイルのエイリアスを作る

python ディレクトリ内のファイルを打印

sh データ顺にファイルを并べたい时

markdown adb shellで端末のファイルをPCに転送

python 指定ディレクトリ内のファイル一覧を取得する