আমি উইন্ডোজ সার্ভার 2003 রিসোর্স কিটের অংশ হিসাবে অন্তর্ভুক্ত Send to/Compressed (zipped) folder
মাইক্রোসফ্ট সরঞ্জামটি ব্যবহার করে উইন্ডোজ ফাংশন অনুকরণ করার চেষ্টা করছি compress.exe
।
এই সরঞ্জামটির সাহায্যে এটি সম্ভব নাও হতে পারে তবে এটিকে কিছু উত্পাদন করতে আমার সমস্যা হচ্ছে। আমি এই দৃশ্যের চেষ্টা করেছি:
md test
cd test
md folder
echo this is file 1 >folder\file1.txt
echo this is file 2 >folder\file2.txt
md output
compress folder\*.* output -z
Microsoft (R) File Compression Utility Version
Copyright (C) Microsoft Corp. 1990-1999. All rights reserved.
Compressing folder\file1.txt to output\folder\file1.txt using MS-ZIP compression.
Compressing folder\file2.txt to output\folder\file2.txt using MS-ZIP compression.
dir /s
Volume in drive C is TI80140500H
Volume Serial Number is AC18-E911
Directory of C:\test
12/05/2015 01:22 a.m. <DIR> .
12/05/2015 01:22 a.m. <DIR> ..
12/05/2015 01:34 a.m. <DIR> folder
12/05/2015 01:22 a.m. <DIR> output
0 File(s) 0 bytes
Directory of C:\test\folder
12/05/2015 01:34 a.m. <DIR> .
12/05/2015 01:34 a.m. <DIR> ..
12/05/2015 01:35 a.m. 15 file1.txt
12/05/2015 01:36 a.m. 17 file2.txt
2 File(s) 32 bytes
Directory of C:\test\output
12/05/2015 01:22 a.m. <DIR> .
12/05/2015 01:22 a.m. <DIR> ..
0 File(s) 0 bytes
Total Files Listed:
2 File(s) 32 bytes
8 Dir(s) 558,695,092,224 bytes free
এই আপাতদৃষ্টিতে সফল সিকোয়েন্স দ্বারা উত্পাদিত কোনও ফাইল আমি দেখতে পাচ্ছি না। compress
একটি জিপ করা ফোল্ডার তৈরি করতে কীভাবে আপনি কোএক্স করবেন - বা কিছু?
** হালনাগাদ **
সরঞ্জামটির জন্য এখানে সহায়তা:
Syntax:
COMPRESS [-R] [-D] [-S] [ -Z | -ZX ] Source Destination
COMPRESS -R [-D] [-S] [ -Z | -ZX ] Source [Destination]
Description:
Compresses one or more files.
Parameter List:
-R Rename compressed files.
-D Update compressed files only if out of date.
-S Suppress copyright information.
-ZX LZX compression. This is default compression.
-Z MS-ZIP compression.
Source Source file specification. Wildcards may be
used.
Destination Destination file | path specification.
Destination may be a directory. If Source is
multiple files and -r is not specified,
Destination must be a directory.
Examples:
COMPRESS temp.txt compressed.txt
COMPRESS -R *.*
COMPRESS -R *.exe *.dll compressed_dir
তিনটি উদাহরণের মধ্যে প্রথমটি দেখে মনে হচ্ছে এটি কোনও ফাইল নেয় এবং সেই ফাইলটির সংকোচিত সংস্করণ তৈরি করে। যা এটা করে
দ্বিতীয়টি আপনি যা আশা করবেন তা উত্পাদন করে tempt.tx_
।
তৃতীয়টি COMPRESS -R *.exe *.dll compressed_dir
আসলে কিছু করে, আমার পূর্ববর্তী বক্তব্যগুলিকে মিথ্যা বলে। এটি একটি ফাইল সংকোচিত_ডির তৈরি করে __ যা আমার ধারণা ফাইলগুলি ধারণ করে holds COMPRESS -R *.txt *.vbs folder compressed_dir
অন্যদিকে AFAICT ফোল্ডারটি উপেক্ষা করে। COMPRESS -R folder compressed_dir
একটি ত্রুটি দেয় "ERROR: The compressed_dir file is not found."
।
সুতরাং আমার উপসংহারটি হ'ল এটি ফোল্ডারগুলি সংকুচিত করতে পারে না এবং এটি জিপ ফাইল / সংকোচিত ফোল্ডার তৈরি করতে পারে না।
যাই হোক না কেন, আমি ছেড়ে দিয়েছি এবং 7 জিপ ব্যবহার করেছি, যা একটি ট্রিট কাজ করে।