0

我正在尝试通过命令提示符的命令重命名一堆 htm 文件,ren但它没有提供所需的输出。

我有名为xyz_alb.htm, xyz_bla.htm...等的文件位于不同的不同文件夹中,并希望将它们重命名为zxy_alb.htm,zxy_bla.htm等等。

我试过下面的代码:

for /r %x in (xyz*.htm) do ren "%x" zxy*.htm

但它正在替换整个文件名,我得到这样的输出:

zxy.htm, zxy.htm...

如何修改此代码以获得所需的输出?

4

2 回答 2

1

尝试

ren xyz_???.htm zxy_???.htm

或者

ren xyz_*.* zxy_*.*

不需要循环。第一个模式在 xyz_ 之后查找 3 个字符,后者匹配最多 '.' 的任意数量的字符。.

对于当前目录类型的多个子目录:

for /r %d in (xyz_*.*) do ren %d zxy_*.*
于 2013-03-13T07:11:42.407 回答
0

在尝试了这么久之后没有得到正确的解决方案,所以在我的同事的帮助下通过 java 进行了尝试......感谢他。

如果有人需要,也愿意分享。

import java.io.File;

/**
 * This class is search with start file character sequence and replace the file name with new character. 
 * @author nitin.choube
 *
 */

public class  SearchAndReplaceFileName
{
    public static void main(String[] args) 
    {
        //Parent file path from start searching files
        File dir = new File("D:\\WS\\Upload");
        // replace character string
        final String replaceChar="XYZ";
        // replace character string with
        final String replaceCharWtih="ALB";         
        // file extension
        final String fileExtension=".htm";

        if(dir.isDirectory()){

            File[] children = dir.listFiles();
            iterateFile(children,replaceChar,replaceCharWtih,fileExtension);

        }       
    }

    /**
     * This method is allow to search and replace file name.
     * @param children
     * @param replaceChar
     * @param replaceCharWtih
     * @param fileExtension
     */
    public static void iterateFile(File[] children,String replaceChar,String replaceCharWtih,String fileExtension){
        try {

            for (int i=0; i<children.length; i++) {

                // Get filename of file or directory

                File file = children[i];

                System.out.println("Getting all files in " + file.getCanonicalPath() + " including those in subdirectories");

                  if(file.isDirectory()){

                      File[] child = file.listFiles();

                      iterateFile(child,replaceChar,replaceCharWtih,fileExtension);

                  }else if(file.isFile()){

                      String extension = file.getName().substring(file.getName().lastIndexOf("."));

                      System.out.println("extracted file name is "+file.getName()+" and extension is ="+extension);

                      if(extension.equals(fileExtension)){

                          String fileName=file.getName().substring(0,file.getName().lastIndexOf(fileExtension));

                          if(fileName.startsWith(replaceChar)){

                              String newFileName=fileName.replace(replaceChar,replaceCharWtih);
                              file.renameTo(new File(file.getCanonicalPath().substring(0,file.getCanonicalPath().lastIndexOf("\\"))+"\\"+newFileName+fileExtension));

                          }else if(fileName.contains("_"+replaceChar+"_")){

                              String newFileName=fileName.replace(replaceChar,replaceCharWtih);
                              file.renameTo(new File(file.getCanonicalPath().substring(0,file.getCanonicalPath().lastIndexOf("\\"))+"\\"+newFileName+fileExtension));
                          }
                      }
                  }
            }

        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
于 2013-03-14T07:02:02.493 回答