全部產品
Search
文件中心

Object Storage Service:cp(上傳檔案)

更新時間:Dec 19, 2024

當您需要將本地檔案、圖片、視頻等資源上傳到OSS,或者需要上傳大檔案至OSS時,可以使用ossutil的cp命令。

注意事項

  • 要上傳檔案,您必須具有oss:PutObjectoss:ListPartsoss:AbortMultipartUpload許可權。具體操作,請參見為RAM使用者授權自訂的權限原則

  • 只有源為目錄時,才能支援批量上傳。

命令格式

ossutil cp source dest [flags]

參數

類型

說明

source

string

本地檔案路徑。支援相對路徑、絕對路徑和-,當為-時,表示從標準輸入讀入。

dest

string

目標Bucket下的檔案路徑。例如:oss://bucket[/prefix]

--acl

string

對象的存取權限。取值:

  • private:私人。

  • public-read:公用讀取。

  • public-read-write:公用讀寫。

  • default:繼承Bucket。

--bigfile-threshold

int

開啟大檔案分區上傳、下載或拷貝的閾值(預設值104857600)。

--cache-control

string

指定該對象被下載時網頁的緩衝行為。

--content-disposition

string

指定對象的展示形式。

--content-encoding

string

聲明對象的編碼方式。

--content-type

string

對象的內容類型。

--copy-props

string

確定從來源物件上傳哪些屬性,取值:

  • none

  • metadata

  • default

-d, --dirs

string

返回目前的目錄下的檔案和子目錄,而非遞迴顯示所有子目錄下的所有檔案。

--encoding-type

string

輸入的對象名或檔案名稱的編碼方式。取值:url。

--end-with

string

按字母排序,返回設定值之前的對象,包含設定值。

--exclude

stringArray

路徑或檔案名稱的排除規則。

--exclude-from

stringArray

從規則檔案裡讀取排除規則。

--expires

stringArray

指定緩衝內容的絕對到期時間。

--files-from

stringArray

從檔案中讀取源檔案名稱列表,忽略空行或注釋行。

--files-from-raw

stringArray

從檔案中讀取源檔案名稱列表。

--filter

stringArray

路徑或檔案名稱過濾規則。

--filter-from

stringArray

從規則檔案讀取過濾規則。

-f, --force

/

強制操作,不進行詢問提示。

--include

stringArray

路徑或檔案名稱的包含規則。

說明

關於過濾選項的更多資訊,請參見過濾選項

--include-from

stringArray

從規則檔案裡讀取包含規則。

-j, --job

int

多檔案操作時的並發任務數(預設值3)。

--listObjects

/

使用ListObjects介面列舉對象。

--max-age

Duration

不傳輸任何比此更早的檔案。預設是秒,或單位尾碼形式 ms|s|m|h|d|w|M|y(預設值off)。

--max-mtime

Time

不傳輸任何比此更新的檔案,UTC時間格式 (預設值off)。

--max-size

SizeSuffix

限制傳輸的最大檔案大小,預設是位元組,或單位尾碼形式B|K|M|G|T|P,1K(KiB)=1024B。

--metadata

strings

指定對象的使用者中繼資料,使用key=value格式。

--metadata-directive

string

指定如何設定目標對象的中繼資料。取值:

  • COPY

  • REPLACE

--metadata-exclude

stringArray

對象中繼資料的排除規則。

--metadata-filter

stringArray

對象中繼資料過濾規則。

--metadata-filter-from

stringArray

從規則檔案讀取對象中繼資料過濾規則。

--metadata-include

stringArray

對象中繼資料的包含規則。

--min-age

Duration

不傳輸任何比此更新的檔案。預設是秒,或單位尾碼形式 ms|s|m|h|d|w|M|y(預設值off)。

--min-mtime

Time

不傳輸任何比此更早的檔案,UTC時間格式(預設值off)。

--min-size

SizeSuffix

限制傳輸的最小檔案大小,預設是位元組,或單位尾碼形式B|K|M|G|T|P,1K(KiB)=1024B。

--no-progress

/

不現顯示度條。

--page-size

int

返回對象或檔案的最大數(預設值1000),取值範圍1~1000。

--parallel

int

單檔案內部操作的並發任務數。

--part-size

SizeSuffix

分區大小,預設情況下根據檔案大小自行計算合適的分區大小值。取值範圍100Ki~5Gi。

-r, --recursive

/

遞迴進行操作。當指定該選項時,命令會對儲存空間下所有合格對象進行操作,否則只對路徑指定的對象進行操作。

--request-payer

string

請求的支付方式,如果為要求者付費模式,請設定該值。取值:requester。

--size-only

/

僅上傳檔案大小不一致的源檔案。

--storage-class

string

對象的儲存類型, 取值:

  • Standard:標準儲存。

  • IA:低頻儲存。

  • Archive:Archive Storage。

  • ColdArchive:冷Archive Storage。

  • DeepColdArchive:深度冷Archive Storage。

--tagging

strings

指定對象的標籤,使用key=value格式。

--tagging-directive

string

指定如何設定目標對象的標籤。取值:

  • COPY

  • REPLACE

-u, --update

/

僅上傳源檔案新於目標檔案。

--ignore-existing

/

跳過已存在的目標檔案。

說明

關於支援的全域命令列選項,請參見支援的全域命令列選項

目標檔案命名規則如下:

  • 單檔案上傳時,如果prefix為空白,則對象的名字為檔案名稱。

  • 單檔案上傳時,如果prefix以"/"結尾,則對象的名字為prefix + 檔案名稱。

  • 批量上傳時,如果prefix為空白,則對象的名字為源檔案相對路徑。

  • 批量上傳時,如果prefix以"/"結尾, 則對象的名字為prefix + 源檔案相對路徑。

  • 批量上傳時,如果prefix不以"/"結尾, 則對象的名字為prefix + "/" + 源檔案相對路徑。

說明

源檔案相對路徑規則為:從根目錄之後的名字,如cp /root/dir/ ... 時,檔案/root/dir/subdir/test.txt的相對路徑為subdir/test.txt。

使用樣本

  • 上傳單個檔案

    將本地檔案examplefile.txt上傳至examplebucket中的desfolder檔案夾下。

    ossutil cp D:/localpath/examplefile.txt oss://examplebucket/desfolder/
  • 僅上傳檔案夾內的檔案

    將本地檔案夾localfolder中的檔案上傳至examplebucket中的desfolder檔案夾下。

    ossutil cp -r D:/localpath/localfolder/ oss://examplebucket/desfolder/
  • 批量上傳合格檔案

    上傳所有檔案格式為TXT的檔案

    ossutil cp -r D:/localpath/localfolder/ oss://examplebucket/desfolder/ --include "*.txt"