Example #1
0
        public static Task WriteContent(this IFileSystemOperator @operator, string filePath, string content, bool overwrite = true)
        {
            var writes = DictionaryHelper.From(filePath, content);

            return(@operator.WriteContents(writes, overwrite));
        }