使用串联重命名文件夹

时间:2016-10-27 14:00:18

标签: windows batch-file rename

我想在根文件夹中为所有文件夹名称(到最后)添加相同的字符串。

根据以下问题,这些代码可能很有用:

     do {

     printf("Menu\n");
     printf("1 - X\n");
     printf("2 - Y\n");
     printf("0 - Exit");
     scanf("%i",&op);

    switch(op)
    {
        case 1: { 
        system("clear");
        printf("Option chosen: 1\n\n");
        // The rest of the code inserting into arrays
        system("clear");
        printf("Option 1 results\n\n");
        // Results
        break; }

        case 2: {
        // Other code about listing, for example
        break; }
      }while(op != 0);

Batch rename folders

然而,这些代码会削减不需要的部分。我想在文件夹名称的末尾添加一个字符串。

1 个答案:

答案 0 :(得分:1)

使用mv "${dir}" "${dir}_-_ppfsefs",没有斜杠。