answersLogoWhite

0

7-Zip doesn't know folder path of drop target. Only Windows Explorer knows exact drop target. And Windows Explorer needs files (drag source) as decompressed files on disk. So 7-Zip extracts files from archive to temp folder and then 7-Zip notifies Windows Explorer about paths of these temp files. Then Windows Explorer copies these files to drop target folder.

To avoid temp file usage, you can use Extract command of 7-Zip or drag-and-drop from 7-Zip to 7-Zip.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you delete all files using Linux?

rm -rf <path to directory>


How do you list all files from directory in PHP4?

Here is a small script that will get the files from the $folder variable using a dir function.


Unlock files in directory using dos commands?

Dos commands are used to create or delete directories. The ATTRIB Command is used for locking and unlocking of files.


What are directories and how do they work when you use them to obtain information?

Directories are folders that store files and other directories. When you use directories to obtain information, you navigate through them by using commands like "cd" (change directory) to move to different directories. You can list files in a directory using commands like "ls" (list) to view the contents.


What are hidden files and how can they is displayed in UNIX?

A hidden file is any file or directory that starts with the character '.' (period). It is designed to eliminate common files from showing with the 'ls' command. Using the -a option for 'ls' will show all files.


What is oracle software structures?

when we install d oracle software, on oracle directory structure is created to store the executables , shared libraries , configuration files , trace files , and so on both server and client software is stored in the same directory. Oracle is installed on the server using on operating system account created specially for the task oracle has a directory structure.


Write a shell script to create two directories and store five files in one directory using the related commands and to transfer all the Files to another directory?

#!/bin/sh mkdir homework lazyass for i in $(seq 5); do touch homework/file-$i; done mv homework/* lazyass


How do you copy all files in a directory without copying sub directories using FTP?

All files in a directly can be copied without copying the sub directories using FTP by first highlighting them. This allows a user to specifically select only the files they want to transfer. If you are doing this via the command line interface using the mget command with a mask (such as *) will transfer all files except subdirectories.


Where to save cs 1.6 demo files?

In Counter-Strike 1.6, demo files are typically saved in the "cstrike" folder within the game's installation directory. The default path is usually something like "C:\Program Files\Valve\cstrike" or "C:\Program Files (x86)\Steam\steamapps\common\Half-Life\cstrike" if you're using Steam. You can also specify a custom directory when recording your demo using the "record" command in the console. Make sure to keep the demo files organized for easy access later.


What is the Reasons of using intermediate frequency?

what is the reasion of using intermediate frequency in television system


How do you transfer files from unix to windows?

Unix files can be easily transferred to windows via a network connection either by using FTP or by using Samba. Samba allows a Unix file system to be mounted/shared on a Windows system to look like a windows directory.


How do you delete 0 byte files using DOS?

The command for deleting a file in DOS is DEL. If the file you are trying to delete is in the current directory, type DEL followed by the full filename. E.g. del file001.txt If there are multiple files, the wildcard * can be used. del file*.txt will delete all the text files that start with 'file' del file*.* will delete all the files that start with file. del *.txt will delete all the text files. del *.* will delete all the files in the current directory. It is possible to delete files in another directory by typing the full path and filename del c:\folder01\*.* will delete all the files in the directory c:\folder01\ DEL will not affect hidden files, but careless use of this command could damage your operating system so use with care.