DokanCloudFS 项目教程

随笔3周前发布 蟹行江河
33 0 0

DokanCloudFS 项目教程

DokanCloudFSA virtual filesystem for various publicly accessible Cloud storage services on the Microsoft Windows platform.项目地址:https://gitcode.com/gh_mirrors/do/DokanCloudFS

1. 项目的目录结构及介绍

DokanCloudFS 项目的目录结构如下:

  1. DokanCloudFS/

  2. ├── AdditionalPackages/

  3. ├── Gateways-Signed/

  4. ├── Gateways/

  5. ├── LegacyGateways/

  6. ├── Mounter/

  7. ├── Tests/

  8. ├── Images/

  9. ├── Library/

  10. ├── TestData/

  11. ├── gitattributes

  12. ├── gitignore

  13. ├── Appveyor.yml

  14. ├── CommonAssemblyInfo.cs

  15. ├── DokanCloudFS.runsettings

目录介绍

  • AdditionalPackages: 包含额外的包文件。
  • Gateways-Signed: 包含已签名的网关文件。
  • Gateways: 包含网关文件。
  • LegacyGateways: 包含旧版本的网关文件。
  • Mounter: 包含启动文件和配置文件。
  • Tests: 包含测试文件。
  • Images: 包含项目相关的图片文件。
  • Library: 包含库文件。
  • TestData: 包含测试数据文件。
  • gitattributes: Git 属性文件。
  • gitignore: Git 忽略文件。
  • Appveyor.yml: Appveyor 配置文件。
  • CommonAssemblyInfo.cs: 公共程序集信息文件。
  • DokanCloudFS.runsettings: 运行设置文件。

2. 项目的启动文件介绍

项目的启动文件位于 Mounter 目录下,主要文件为 IgorSoft.DokanCloudFS.Mounter.exe

启动文件介绍

  • IgorSoft.DokanCloudFS.Mounter.exe: 这是 DokanCloudFS 的主启动文件,用于挂载云存储服务。

3. 项目的配置文件介绍

项目的配置文件位于 Mounter 目录下,主要文件为 IgorSoft.DokanCloudFS.Mounter.exe.config

配置文件介绍

  • IgorSoft.DokanCloudFS.Mounter.exe.config: 这是 DokanCloudFS 的配置文件,包含了挂载点的配置信息。
示例配置
  1. <mount libPath=".Library" threads="4">

  2. <drives>

  3. <drive schema="onedrive" userName="OneDriveUser" root="W:" encryptionKey="MyOneDriveSecret&amp;I" timeout="300" />

  4. <drive schema="pcloud" userName="pCloudUser" root="X:" encryptionKey="MypCloudSecret&amp;I" timeout="300" />

  5. <drive schema="webdav" userName="webDavUser" root="Y:" parameters="baseAddress=https://webdav.magentacloud.de" encryptionKey="MyWebDavSecred&amp;I" timeout="300" />

  6. <drive schema="yandex" userName="YandexUser" root="Z:" encryptionKey="MyYandexSecret&amp;I" timeout="300" />

  7. </drives>

  8. </mount>

配置选项

  • libPath: 搜索网关插件程序集的路径(相对于 IgorSoft.DokanCloudFS.Mounter.exe 的位置)。
  • threads: 并发线程数。

以上是 DokanCloudFS 项目的基本教程,包含了项目的目录结构、启动文件和配置文件的介绍。希望对您有所帮助。

DokanCloudFSA virtual filesystem for various publicly accessible Cloud storage services on the Microsoft Windows platform.项目地址:https://gitcode.com/gh_mirrors/do/DokanCloudFS

© 版权声明

相关文章

暂无评论

您必须登录才能参与评论!
立即登录
暂无评论...