Download Sharepoint Site Pages

John Sparks 106 Reputation points
2023-02-20T17:41:08.2433333+00:00

Hi. Is there any way of downloading all the site pages from the Site Pages Page library?

I can download items from document libraries fine but the Page Library doesnt have this option.

I'm using a modern site Online Sharepoint.

Thanks!

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
10,249 questions
SharePoint Server Management
SharePoint Server Management
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Management: The act or process of organizing, handling, directing or controlling something.
2,893 questions
{count} votes

Accepted answer
  1. Emily Du-MSFT 44,071 Reputation points Microsoft Vendor
    2023-02-21T09:17:10.9766667+00:00

    Here is a method for you:

    1.Create a text column.

    2.Select the column -> Column settings -> Format this column -> Use following codes.

    {
      "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
      "elmType": "button",
      "style": {
        "border-radius": "5px",
        "margin": "5px 0px",
        "padding": "0px",
        "visibility": "=if([$File_x0020_Type] == '', 'hidden', 'visible')"
      },
      "attributes": {
        "class": "ms-bgColor-themePrimary"
      },
      "children": [
        {
          "elmType": "a",
          "txtContent": "Download",
          "style": {
            "text-decoration": "none",
            "padding": "10px 0px",
            "width": "100%"
          },
          "attributes": {
            "href": "= @currentWeb + '/_layouts/15/download.aspx?UniqueId=' + [$UniqueId]",
            "target": "_blank",
            "class": "ms-fontColor-white"
          }
        }
      ]
    }
    
    

    3.Result. Then click download button to download files.

    User's image


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    12 people found this answer helpful.

2 additional answers

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  2. Martin H 0 Reputation points
    2023-09-19T13:20:22.7233333+00:00

    Hi,

    How do I reuse the file that I just downloaded, if I'm not a central admin, but have my own Sharepoint site.