Я исследовал все статьи здесь и в Google. Хотя некоторые из них мне кажутся необходимыми, я продолжаю сталкиваться с этой проблемой. Я мог бы, конечно, использовать некоторую помощь, чтобы решить эту проблему раз и навсегда.

Я хочу скопировать файл Customize.xml с сервера и заменить его текущим файлом во всех профилях пользователей. Я бы предпочел сделать это так, чтобы он работал для всех, кто входит в систему каждый раз. Любая помощь, выясняющая это и заставляющая его работать, будет принята с благодарностью. [Введите описание изображения здесь] [1]

См. Сообщение об исключении: https://i.ibb.co/2NbQf5F/Capture.png

using System;
using System.Configuration;
using System.IO;

namespace copy_delete_move_files
{
    public class SimpleFileCopy
    {
        public static object Logger { get; private set; }

        static void Main()
        {

            string fileName = "Customize.xml";
            string sourcePath = @"\\serverpath\c$\TestFolder";
            string targetPath = @"\\desktoppath\c$\%USERPROFILE%\APPDATA\Roaming\Litera\Customize";

            // Use Path class to manipulate file and directory paths.
            string sourceFile = Path.Combine(sourcePath, fileName);

            string destFile = Path.Combine(targetPath, fileName);

            // To copy a folder's contents to a new location:
            // Create a new target folder, if necessary.
            if (!Directory.Exists(targetPath))


            {
                Directory.CreateDirectory(targetPath);
            }

            // To copy a file to another location and 
            // overwrite the destination file if it already exists.
            File.Copy(sourceFile, destFile, true);

            // To copy all the files in one directory to another directory.
            // Get the files in the source folder.
            // Note: Check for target path was performed previously
            // in this code example.

            if (Directory.Exists(sourcePath))
            {
                string[] files = Directory.GetFiles(sourcePath);

                // Copy the files and overwrite destination files if they already exist.
                foreach (string s in files)
                {
                    // Use static Path methods to extract only the file name from the path.
                    fileName = Path.GetFileName(s);
                    destFile = Path.Combine(targetPath, fileName);
                    File.Copy(s, destFile, true);
                }
            }
            else
            {
                Console.WriteLine("Source path does not exist!");
            }

            // Keep console window open in debug mode.
            Console.WriteLine("Press any key to exit.");
            Console.ReadKey();
        }
    }
}

0