Example #1
0
        /// <summary>
        /// Writes the text to the specified file
        /// </summary>
        /// <param name="text">The text to write</param>
        /// <param name="path">The path of the file to write to</param>
        /// <param name="append">If true, writes the text to the end of the file, otherwise overrides any existing file</param>
        /// <returns></returns>
        public async Task WriteTextToFileAsync(string text, string path = "", bool append = false)
        {
            // If the user don't want to save the debug logger.
            if (!LoggerManagerConfiguration.SaveDebugFile)
            {
                // Then return.
                return;
            }

            path = Filename;

            // Normalize path
            path = CommonFunctions.NormalizePath(path);

            // Resolve to absolute path
            path = CommonFunctions.ResolvePath(path);

            // Lock the task
            await AsyncAwaiter.AwaitAsync(nameof(FileManager) + path, async() =>
            {
                // Run the synchronous file access as a new task
                await IoC.Task.Run(() =>
                {
                    // Write the log message to file
                    using (var fileStream = (TextWriter) new StreamWriter(File.Open(path, FileMode.Append)))
                        fileStream.Write(text);
                });
            });
        }
Example #2
0
 /// <summary>
 /// Run the action asynchronously.
 /// </summary>
 /// <param name="msg"></param>
 private async void LogAsync(string msg)
 {
     // Lock the task
     await AsyncAwaiter.AwaitAsync(nameof(CustomFunctionAsyncLogger), async() =>
     {
         // Run the synchronous task
         await IoC.Task.Run(() =>
         {
             // Run the action
             LogAction(msg);
         });
     });
 }
Example #3
0
        /// <summary>
        /// Writes the text to the specified file
        /// </summary>
        /// <param name="text">The text to write</param>
        /// <param name="path">The path of the file to write to</param>
        /// <param name="append">If true, writes the text to the end of the file, otherwise overrides any existing file</param>
        /// <returns></returns>
        public async Task WriteTextToFileAsync(string text, string path, bool append = false)
        {
            // Normalize path
            path = CommonFunctions.NormalizePath(path);

            // Resolve to absolute path
            path = CommonFunctions.ResolvePath(path);

            // Lock the task
            await AsyncAwaiter.AwaitAsync(nameof(FileManager) + path, async() =>
            {
                // Run the synchronous file access as a new task
                await IoC.Task.Run(() =>
                {
                    // Write the log message to file
                    using (var fileStream = (TextWriter) new StreamWriter(File.Open(path, append ? FileMode.Append : FileMode.Create)))
                        fileStream.Write(text);
                });
            });
        }