Skip to main content
felixr
October 6, 2022
Solved

Is there a way of changing a SharePoint folder name ?

  • October 6, 2022
  • 7 replies
  • 0 views

it is  posible to  change a sharepoint    folder name using the  update folder metadata integration

    Best answer by shivanireddys0001

    Yes , we can update folder name using update folder metadata integration

    in the folder path you can specify the path of the folder which you wanted to rename and the meta data you can pass  as below

    a!toJson(
    {
    "__metadata": { "type": "SP.Data.DocumentsItem" },
    /* ri!newFloderName - new foldername which you would like  to provide*/
    "Title": ri!newFolderName,
    "FileLeafRef": ri!newFolderName
    }
    )

    7 replies

    July 21, 2023

    Yes , we can update folder name using update folder metadata integration

    in the folder path you can specify the path of the folder which you wanted to rename and the meta data you can pass  as below

    a!toJson(
    {
    "__metadata": { "type": "SP.Data.DocumentsItem" },
    /* ri!newFloderName - new foldername which you would like  to provide*/
    "Title": ri!newFolderName,
    "FileLeafRef": ri!newFolderName
    }
    )

    felixr
    felixrAuthor
    July 21, 2023

    Thanks for your answer [mention:b193ec7b482d482b93cb9da3112fca42:e9ed411860ed4f2ba0265705b8793d05]