论坛首页 编程语言技术论坛

使用PHP来写批处理脚本 -- 多文件重命名处理

浏览 2051 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2008-12-19   最后修改:2009-03-10
PHP

rename-somefile.php 这里仅仅为一个小例子,使用PHP写批处理脚本,可以说是简单又实用啊,这里我写的一些例子,会陆续添加:

<?php
	$files = scandir("e:/小说") ; //此函数在PHP5中才存在
	$files_count = count($files) ;
	print "\n" . $files_count ;
	for($i=2;$i<$files_count;$i++) //去掉 . 和 ..
		//print "\n" . $files[$i] ;
		rename("e:/小说/". $files[$i],"e:/小说/". "$i.txt");
?>

 

   发表时间:2008-12-19  

0 请登录后投票
论坛首页 编程语言技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics