Possible Duplicate:
Compressing files in windows

I want to compress a file using the command line. This command-line

C: compact /c aa.xml

returns a successful message but I can't see any ZIP file in the C folder. Where is the problem?

link|improve this question
1  
I'll give you a hint: compact doesn't compress things. It tells NTFS to do so. – Marcelo Cantos May 14 '10 at 10:10
If you want to compress from shell, install command-line archiver and put it in path. – SigTerm May 14 '10 at 10:14
feedback

migrated from stackoverflow.com May 14 '10 at 10:22

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by quack quixote May 14 '10 at 10:40

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

The COMPACT command isn't for compressing file like zip compression.

If you want create zip file via the command line, try the 7-Zip application. Here are examples for using it from the command-line: http://dotnetperls.com/7-zip-examples

link|improve this answer
feedback