ซ้ำเป็นไปได้:
วิธีการปิดการใช้งานการส่งออกของ 7-Zip?
ฉันต้องการใช้7z.exe
จากพรอมต์คำสั่งเพื่อแยก / เก็บข้อมูลอย่างเงียบ ๆ ฉันไม่ต้องการใช้สคริปต์หรือ API ของบุคคลที่สาม 7-Zip มีการสนับสนุนเนทิฟสำหรับการแยกบรรทัดคำสั่งแบบเงียบหรือไม่?
ซ้ำเป็นไปได้:
วิธีการปิดการใช้งานการส่งออกของ 7-Zip?
ฉันต้องการใช้7z.exe
จากพรอมต์คำสั่งเพื่อแยก / เก็บข้อมูลอย่างเงียบ ๆ ฉันไม่ต้องการใช้สคริปต์หรือ API ของบุคคลที่สาม 7-Zip มีการสนับสนุนเนทิฟสำหรับการแยกบรรทัดคำสั่งแบบเงียบหรือไม่?
คำตอบ:
7-Zip ไม่มีโหมด "เงียบ" หรือ "เงียบ" อย่างชัดเจนสำหรับการแยกบรรทัดคำสั่ง
คำถามที่คล้ายกันที่ Stack Overflow การแตกไฟล์ 7-Zip "silently" - ตัวเลือกบรรทัดคำสั่งให้วิธีแก้ปัญหาที่เป็นไปได้โดยใช้รหัสสคริปต์ Python:
ความเป็นไปได้อย่างหนึ่งคือการวางไข่กระบวนการเด็กด้วย popen ดังนั้นผลลัพธ์จะกลับมาที่แม่เพื่อประมวลผล / แสดง (ถ้าต้องการ) หรือละเว้นอย่างสมบูรณ์ (สร้างวัตถุ popen ของคุณด้วย stdout = PIPE และ stderr = PIPE เพื่อให้สามารถ เพื่อดึงเอาท์พุทจากลูก)
แล้วคำถามที่คล้ายกันที่นี่ใน Super User, เอาท์พุทบรรทัดคำสั่งของ Redirect 7-Zip ไปที่ / dev / null บน Windows เมื่อทำการแตกไฟล์. 7zรายงานว่าปัญหาส่วนใหญ่เป็นผลลัพธ์และโดยการส่งเอาต์พุตไปยัง NULL คุณ ทำให้ระบบทำงานเงียบเป็นหลัก:
ลองทำสิ่งนี้:
% COMSPEC% / c "% ProgramFiles% \ 7-Zip \ 7z.exe" ...
ใช่มันรองรับการใช้บรรทัดคำสั่ง เปิดพร้อมท์คำสั่งและไปที่โฟลเดอร์การติดตั้ง (โดยทั่วไปคือ C: \ Program Files \ 7-Zip) และประเภท:
7z -h
นี่คือผลลัพธ์:
7-Zip 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18
Usage: 7z <command> [<switches>...] <archive_name> [<file_names>...]
[<@listfiles...>]
<Commands>
a: Add files to archive
b: Benchmark
d: Delete files from archive
e: Extract files from archive (without using directory names)
l: List contents of archive
t: Test integrity of archive
u: Update files to archive
x: eXtract files with full paths
<Switches>
-ai[r[-|0]]{@listfile|!wildcard}: Include archives
-ax[r[-|0]]{@listfile|!wildcard}: eXclude archives
-bd: Disable percentage indicator
-i[r[-|0]]{@listfile|!wildcard}: Include filenames
-m{Parameters}: set compression Method
-o{Directory}: set Output directory
-p{Password}: set Password
-r[-|0]: Recurse subdirectories
-scs{UTF-8 | WIN | DOS}: set charset for list files
-sfx[{name}]: Create SFX archive
-si[{name}]: read data from stdin
-slt: show technical information for l (List) command
-so: write data to stdout
-ssc[-]: set sensitive case mode
-ssw: compress shared files
-t{Type}: Set type of archive
-u[-][p#][q#][r#][x#][y#][z#][!newArchiveName]: Update options
-v{Size}[b|k|m|g]: Create volumes
-w[{path}]: assign Work directory. Empty path means a temporary directory
-x[r[-|0]]]{@listfile|!wildcard}: eXclude filenames
-y: assume Yes on all queries
ดังนั้นนี่คือตัวอย่างหนึ่งของการสกัดแบบเงียบ
7z x "C:\Path\To\File.zip" -y > nul