ZeroInstall.HierarchyToFolder.WriteFileEntryTo C# (CSharp) Method

WriteFileEntryTo() private static method

private static WriteFileEntryTo ( FileEntry entry, string combinedPath ) : void
entry FileEntry
combinedPath string
return void
        private static void WriteFileEntryTo(FileEntry entry, string combinedPath)
        {
            File.WriteAllBytes(combinedPath, entry.Content);
            SetDestinationDate(combinedPath, entry);
        }