Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to install and use Aliyun OSS Storage

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces "how to install and use Aliyun OSS Storage". In daily operation, I believe many people have doubts about how to install and use Aliyun OSS Storage. The editor consulted all kinds of materials and sorted out simple and easy-to-use methods of operation. I hope it will be helpful to answer the doubts about "how to install and use Aliyun OSS Storage". Next, please follow the editor to study!

Aliyun OSS Storage extensions that support Laravel 9

Installation method

Quick use of composer require alphasnow/aliyun-oss-laravel

File write

Storage::disk ('aliyun')-> putFile (' prefix/path','/ local/path/file.md'); Storage::disk ('aliyun')-> putFileAs (' prefix/path','/ local/path/file.md',' file.md'); Storage::disk ('aliyun')-> put (' prefix/path/file.md', file_get_contents ('/ local/path/file.md')); $fp = fopen ('/ local/path/file.md','r') Storage::disk ('aliyun')-> put (' prefix/path/file.md', $fp); fclose ($fp); Storage::disk ('aliyun')-> putRemoteFile (' prefix/path/file.md', 'http://example.com/file.md');Storage::disk('aliyun')->prepend('prefix/path/file.md',' Prepended Text'); Storage::disk ('aliyun')-> append (' prefix/path/file.md', 'Appended Text')

File query

Storage::disk ('aliyun')-> url (' prefix/path/file.md'); Storage::disk ('aliyun')-> temporaryUrl (' prefix/path/file.md',3600); Storage::disk ('aliyun')-> get (' prefix/path/file.md'); Storage::disk ('aliyun')-> exists (' prefix/path/file.md'); Storage::disk ('aliyun')-> size (' prefix/path/file.md') Storage::disk ('aliyun')-> lastModified (' prefix/path/file.md')

File operation

Storage::disk ('aliyun')-> copy (' prefix/path/file.md', 'prefix/path/file_new.md'); Storage::disk (' aliyun')-> move ('prefix/path/file.md',' prefix/path/file_new.md'); Storage::disk ('aliyun')-> rename (' prefix/path/file.md', 'prefix/path/file_new.md')

File deletion

Storage::disk ('aliyun')-> delete (' prefix/path/file.md'); Storage::disk ('aliyun')-> delete ([' prefix/path/file1.md', 'prefix/path/file2.md'])

Folder operation

Storage::disk ('aliyun')-> makeDirectory (' prefix/path'); Storage::disk ('aliyun')-> deleteDirectory (' prefix/path'); / / query first-level subdirectory files Storage::disk ('aliyun')-> files (' prefix/path'); / / Recursively query multi-level subdirectory files Storage::disk ('aliyun')-> allFiles (' prefix/path'); / / query first-level subdirectories Storage::disk ('aliyun')-> directories (' prefix/path') / / Recursive query multi-level subdirectory Storage::disk ('aliyun')-> allDirectories (' prefix/path'); at this point, the study on "how to install and use Aliyun OSS Storage" is over, hoping to solve everyone's doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report