ToSic.SexyContent.ImportExport.ZipExport.AddInstructionsToPackageFolder C# (CSharp) Method

AddInstructionsToPackageFolder() private method

This adds various files to an app-package, so anybody who gets such a package is informed as to what they must do with it.
private AddInstructionsToPackageFolder ( string targetPath ) : void
targetPath string
return void
        private void AddInstructionsToPackageFolder(string targetPath)
        {
            var srcPath = HttpContext.Current.Server.MapPath(Path.Combine(Settings.ToSexyDirectory, "SexyContent\\ImportExport\\Instructions"));

            foreach (var file in Directory.GetFiles(srcPath))
                File.Copy(file, Path.Combine(targetPath, Path.GetFileName(file)));
        }