KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
flysystem-smb
★ 13
Open GitHub ↗
Flysystem Adapter for Icewind SMB
Download README (.md)
Explore Similar Repositories
nodash
:
No description available.
stemmer-rs
:
Stemming library for Rust, using bindings to Snowball C implementation
malfeed
:
Feed for verious malicious IPs such as malware and botnets
npm-sass
:
sass compilation with npm aware include paths
DiDiPark
:
基于LBS地图开发的查找停车位软件,期在使用户能合理的运用空闲的车位或者家中空闲的土地。旨在缓解停车难,乱停车的乱象。也使得停车位更能被合理的运用,同时也能使得用户收入一部分收益。目前部署在sea中。
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
flysystem-smb
?
Download (.md)
# Flysystem Adapter for Icewind SMB ## Usage ```php use Icewind\SMB\BasicAuth; use Icewind\SMB\ServerFactory; use League\Flysystem\Filesystem; use RobGridley\Flysystem\Smb\SmbAdapter; $factory = new ServerFactory(); $auth = new BasicAuth('username', 'domain/workgroup', 'password'); $server = $factory->createServer('host', $auth); $share = $server->getShare('name'); $filesystem = new Filesystem(new SmbAdapter($share)); ``` ## Installation ``` $ composer require robgridley/flysystem-smb ``` ## Note This adapter does not support visibility. Calls to `visibility()` or `setVisibility()` throw exceptions and setting visibility via writes, moves, etc. is ignored.