php从文件夹随机读取文件的方法

php从文件夹随机读取文件的方法
function RandomFile($folder='', $extensions='.*'){
  // fix path:
  $folder = trim($folder);
  $folder = ($folder == '') ? './' : $folder;
  // check folder:
  if (!is_dir($folder)){ die('invalid folder given!'); }
  // create files array
  $files = array();
  // open directory
  if ($dir = @opendir($folder)){
    // go trough all files:
    while($file = readdir($dir)){
      if (!preg_match('/^\.+$/', $file) and
        preg_match('/\.('.$extensions.')$/', $file)){
        // feed the array:
        $files[] = $file;        
      }      
    }    
    // close directory
    closedir($dir);  
  }
  else {
    die('Could not open the folder "'.$folder.'"');
  }
  if (count($files) == 0){
    die('No files where found :-(');
  }
  // seed random function:
  mt_srand((double)microtime()*1000000);
  // get an random index:
  $rand = mt_rand(0, count($files)-1);
  // check again:
  if (!isset($files[$rand])){
    die('Array index was not found! very strange!');
  }
  // return the random file:
  return $folder . $files[$rand];
}
 
//用法演示:
// "jpg|png|gif" matches all files with these extensions
print RandomFile('test_images/','jpg|png|gif');
// returns test_07.gif
// ".*" matches all extensions (all files)
print RandomFile('test_files/','.*');
// returns foobar_1.zip
// "[0-9]+" matches all extensions that just 
// contain numbers (like backup.1, backup.2)
print RandomFile('test_files/','[0-9]+');
// returns backup.7

来源 https://www.7428.com.cn

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
可以使用Java的File类来实现从多个文件夹随机读取1000个文件的操作。以下是实现的步骤: 1. 定义一个存储文件路径的数组,包含多个文件夹的路径。 2. 使用一个循环遍历每个文件夹,使用File类的listFiles()方法获取文件夹中的所有文件。 3. 将获取到的文件路径存储到一个ArrayList中。 4. 使用Collections.shuffle()方法将ArrayList中的文件路径随机排序。 5. 使用一个循环遍历ArrayList,根据文件路径读取文件内容。 6. 当读取的文件数量达到1000时,停止循环。 以下是示例代码: ```java import java.io.*; import java.util.*; public class RandomFileReader { public static void main(String[] args) { String[] folders = { "/path/to/folder1", "/path/to/folder2", "/path/to/folder3" }; ArrayList<String> files = new ArrayList<String>(); for (String folder : folders) { File[] folderFiles = new File(folder).listFiles(); for (File file : folderFiles) { if (file.isFile()) { files.add(file.getPath()); } } } Collections.shuffle(files); int count = 0; for (String filePath : files) { try { BufferedReader reader = new BufferedReader(new FileReader(filePath)); String line = reader.readLine(); while (line != null) { // 读取文件内容,可以根据具体需求进行处理 System.out.println(line); line = reader.readLine(); } reader.close(); count++; if (count >= 1000) { break; } } catch (IOException e) { e.printStackTrace(); } } } } ``` 需要注意的是,该代码中只是简单地读取文件内容并输出到控制台。如果需要进行其他操作,可以根据具体需求进行修改。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值