Пример #1
0
        /// <summary>
        /// Writes the byte[] FileContent to the specified path.
        /// If no filename is set the property Filename will be used.
        /// </summary>
        /// <param name="path"></param>
        /// <param name="filename"></param>
        /// <param name="overwrite"></param>
        /// <returns></returns>
        public virtual async Task WriteFileAsync(string path,
                                                 FileSavingOption options = null,
                                                 string filename          = null,
                                                 bool overwrite           = false)
        {
            if (options != null)
            {
                switch (options.Option)
                {
                case FileSavingOptions.SavingTimestamp:
                    Subfolder = DateTime.Now.ToString("yyyy-MM-dd_HHmmss_ff");
                    break;

                case FileSavingOptions.FirstTwoHashCharacters:
                    Subfolder = Sha256Hash?.Substring(0, 2);
                    break;

                case FileSavingOptions.EmailAccount:
                    Subfolder = options.EmailAccount;
                    break;
                }
            }

            // check if path is really a dir and not a filepath
            if (File.Exists(path))
            {
                // if the path is a filepath just take its directory
                path = Path.GetDirectoryName(path);
            }

            var fullPath = Path.Combine(path, Subfolder);

            // create path if it doesn't exist yet
            if (!Directory.Exists(fullPath))
            {
                Directory.CreateDirectory(fullPath);
            }

            filename = filename.IsNullOrEmpty() ? Filename : filename;

            var fullFilename = Path.Combine(fullPath, filename);

            if (!File.Exists(fullFilename) || overwrite)
            {
                using (var fs = new FileStream(fullFilename, FileMode.Create,
                                               FileAccess.Write, FileShare.None,
                                               bufferSize: 4096, useAsync: true))
                {
                    await fs.WriteAsync(FileContent, 0, FileContent.Length);
                }
                FullPath = fullFilename;
            }
        }