Show / Hide Table of Contents

    Overview

    The FTP server provides two file systems by default:

    • System.IO-based file system
    • Google Drive-based file system

    The System.IO-based file system is usually what you want and the Google Drive-based file system is a proof-of-concept.

    System.IO-based file system

    This file system just uses the operating systems underlying file system and serves it to the user.

    Configuration

    Here is an example of a configuration:

    services.Configure<DotNetFileSystemOptions>(cfg => {
        cfg.RootPath = "/your/root/path";
    });
    

    You can also configure the following:

    • Usage of the user ID as subdirectory
    • Is deletion of non-empty directories allowed?

    Google Drive-based file system

    This topic is explained in a separate article.

    Your own file system

    This topic is explained in a separate article.

    • Improve this Doc
    Back to top
    Copyright © 2018 Fubar Development Junker
    Generated by DocFX
    Creative Commons License
    FluentMigrator Documentation by FluentMigrator Project is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.