示例#1
0
        private static void DoLoadListCreate(FileInfo target, FileSystemInfo initial, FileSystemInfo shared, FileSystemInfo shared_sound)
        {
            var initialContainer          = FilesContainer.From(initial.FullName);
            var sharedContainer           = FilesContainer.From(shared.FullName);
            var sharedSoundContainer      = FilesContainer.From(shared_sound.FullName);
            var initialContainerFiles     = initialContainer.GetFiles();
            var sharedContainerFiles      = sharedContainer.GetFiles();
            var sharedSoundContainerFiles = sharedSoundContainer.GetFiles();

            LoadListFile.WriteFileNames(target.FullName, initialContainerFiles, sharedContainerFiles, sharedSoundContainerFiles);
        }