Question

how do I zip two files to create one zipped file on a Mac. I want...

how do I zip two files to create one zipped file on a Mac.

I want to be able to unzip my file and my programs or txt files appear and not a folder containing the text file

Homework Answers

Answer #1

Step 1

Hold down the mouse button or trackpad to draw a box around all the files you want to compress. Alternatively, press the Command button while tapping the trackpad or while pressing the mouse button to select specific files.

Step 2

Right-click or press Control + Tap and select Compress on the pop-up menu.

A new, single archive will appear in the folder. As before, the original files remain intact.

Step 3

To rename the default Archive.zip file name, simply right-click or press Control + Tap on the archive and select Rename. This is useful if you need to create multiple zip files or to make it easier for the recipient to know what’s in the archive.

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
1.      Create 100 text files automatically; in each file write a random number from 1 to 10....
1.      Create 100 text files automatically; in each file write a random number from 1 to 10. Use outputstreams (fileoutputstream, buffredwriter….) 2.      Read the content of the 100 files and combine them into a 1 single file. 3.      Write java code to do the following: a.      To write the following text into a text file EEEESAAA@23SDCFSAWERF%WASDFGHWERTRQW b.      Read the file using a java program c.      Find how many D’s in the file d.      Extract the text between the @ and the # 1. Create 100 text files...
1 Design and implement FileCompare program that compares two text input files (file1.txt and file2.txt), line-by-line,...
1 Design and implement FileCompare program that compares two text input files (file1.txt and file2.txt), line-by-line, for equality. Print any lines that are not equivalent indicating the line numbers in both files. The language of implementation is java 2 . Create a program that reads a string input from the user, then determines and prints how many of each lowercase vowels (a, e. i, o, and u) appear in the entire string. Have a separate counter for each vowel. Also...
I Was able to backup using transact-sql, but I could not do a restore for some...
I Was able to backup using transact-sql, but I could not do a restore for some reason. IT says database have not been backup. But the .bak file is in the folder. Here is my code for restore: USE master RESTORE DATABASE [SmartHomes FROM DISK = N'C:\Program Files\Microsoft SQL Server\MSSQL14.MSSQLSERVER\MSSQL\Backup\SQLTestDB.bak' WITH FILE = 1, NOUNLOAD, STATS = 5 GO My backup file that was successful: BACKUP DATABASE SmartHomes TO DISK = N'C:\Program Files\Microsoft SQL Server\MSSQL14.MSSQLSERVER\MSSQL\Backup\SmartHomes.bak' WITH NOFORMAT, NOINIT,  NAME = N'SmartHomes-Full...
Hello, I am trying to create a Java program that reads a .txt file and outputs...
Hello, I am trying to create a Java program that reads a .txt file and outputs how many times the word "and" is used. I attempted modifying a code I had previously used for counting the total number of tokens, but now it is saying there is an input mismatch. Please help! My code is below: import java.util.*; import java.io.*; public class Hamlet2 { public static void main(String[] args) throws FileNotFoundException { File file = new File("hamlet.txt"); Scanner fileRead =...
The project CreateDirectoriesDemo is included with the files for this chapter as a zipped file. rewrite...
The project CreateDirectoriesDemo is included with the files for this chapter as a zipped file. rewrite the program so that it asks the user for the location where the new directories are to be created, and then asks the user to enter, one at a time, the relative path names of the directories it should create. Amended additional details to the above abstraction of the requirements. The application should be multiplatform adaptive. This means that it should work on an...
Please do the following in python: Write a program (twitter_sort.py) that merges and sorts two twitter...
Please do the following in python: Write a program (twitter_sort.py) that merges and sorts two twitter feeds. At a high level, your program is going to perform the following: Read in two files containing twitter feeds. Merge the twitter feeds in reverse chronological order (most recent first). Write the merged feeds to an output file. Provide some basic summary information about the files. The names of the files will be passed in to your program via command line arguments. Use...
Create a MergeFiles application that merges the integers ordered from low to high in two text...
Create a MergeFiles application that merges the integers ordered from low to high in two text data files into a third text data file, maintaining the order from low to high (no post merge sorts!). For example, the two files of integers could contain: File 1: 12 23 34 45 56 67 69 123 133 File 2: 4 5 10 20 35 44 100 130 150 160 180 The application should not use an array or ArrayList to temporarily store...
I try to link two different directories, file together to one file. After I finish, here...
I try to link two different directories, file together to one file. After I finish, here appear one question. First open the file, it show source in file1 Second open the file, it shows source in file2 Third is file1 Fourth is file2 Here is the explanation, but I still confuse how to solve it. Someone can explain more detail and how can I solve this problems? You are not keeping track of the changes, there is an offset that...
UNIX COMMANDS Task B Create a one-line command, using the famous.dat file, to add the word...
UNIX COMMANDS Task B Create a one-line command, using the famous.dat file, to add the word " STREET" to the address, for all who live on 2nd or 3rd. For example: "2nd" becomes "2nd STREET" and "3rd" becomes "3rd STREET". Display only the first 9 lines. Hint: Use 2 sed statements with pipes. Task C Display all lines in famous.dat that end in 0 or 1, and have a 1 in the 3rd from the last column. For example lines...
How could I create a very basic assembly program that is able to use string literals,...
How could I create a very basic assembly program that is able to use string literals, reserved words, and identifiers? I also need to process some directives, instructions, and labels as well. Could someone generate a simple assembly program to do these things? Thank you! My apologies, x86 processors. It's also a 32-bit program! We are using Visual Studio, and writing 32-bit programs. This program can literally do anything, as long as it meets the following requirements as described above.