ฉันต้องลบคุณลักษณะอ่านอย่างเดียวของไฟล์ทั้งหมดภายใต้ไดเรกทอรีซ้ำใน Windows 7 โดยใช้บรรทัดคำสั่ง คุณช่วยยกตัวอย่างเกี่ยวกับเรื่องนี้ได้ไหม
ฉันต้องลบคุณลักษณะอ่านอย่างเดียวของไฟล์ทั้งหมดภายใต้ไดเรกทอรีซ้ำใน Windows 7 โดยใช้บรรทัดคำสั่ง คุณช่วยยกตัวอย่างเกี่ยวกับเรื่องนี้ได้ไหม
คำตอบ:
ฉันจะใช้คำสั่ง ATTRIB เช่น:
attrib -r c:\folder\*.* /s
attrib
คือคำสั่ง
-r
คือแฟล็กสำหรับการลบแอ็ตทริบิวต์แบบอ่านอย่างเดียว
c:\folder\*.*
คือโฟลเดอร์ที่คุณรันอยู่รวมถึง wildcards สำหรับไฟล์ทั้งหมด
/s
คือแฟล็กสำหรับการทำไดเร็กทอรีย่อยและไฟล์ทั้งหมด
นี่คือเอกสารและตัวอย่างเพิ่มเติมสำหรับคำสั่ง attrib: https://docs.microsoft.com/en-us/windows-server/administrator/windows-commands/attrib
/d
หากคุณต้องการให้ประมวลผลโฟลเดอร์จริงด้วย
attrib -h -r
)
ก่อนอื่นให้เปิดพรอมต์คำสั่ง จากนั้นcd
ในไดเรกทอรีที่คุณต้องการเริ่มใช้การเปลี่ยนแปลงคุณสมบัติ ขั้นสุดท้ายให้ป้อนคำสั่งต่อไปนี้:
attrib -R /S
ซึ่งจะลบแอททริบิวต์แบบอ่านอย่างเดียวจากไฟล์ทั้งหมดในไดเรกทอรีปัจจุบันจากนั้นจะลดขนาดลงเพื่อทำสิ่งเดียวกันในทุกไดเรกทอรีย่อย
attrib
หมายเหตุ:คำตอบอื่น ๆ ส่วนใหญ่ใช้เฉพาะ-r
ซึ่งอาจไม่ทำงานกับไฟล์ที่มีsystem
หรือhidden
ชุดคุณลักษณะ
ดังนั้นนี่คือวิธีแก้ปัญหาสำหรับซ้ำเอาคุณลักษณะอ่านอย่างเดียวจากทุกไฟล์ (รวมทั้งผู้ที่มีระบบหรือซ่อนไว้) ภายในไดเรกทอรี:
attrib -s -h -r "c:\path_to_folder\*.*" /s /d
คำอธิบาย:
-s
ลบแอตทริบิวต์ของระบบลบแอตทริบิวต์ที่
-h
ซ่อนอยู่ลบแอตทริบิวต์
-r
อ่านอย่างเดียว
/s
ตั้งค่า / ลบแอตทริบิวต์ในโฟลเดอร์ปัจจุบันและรวมถึงโฟลเดอร์ย่อย
/d
ตั้งค่า / ลบแอตทริบิวต์ของโฟลเดอร์ด้วย
ฉันสร้างไฟล์ชุดนี้เพื่อทำสิ่งนี้ โดยทั่วไปไฟล์แบทช์นี้จะล้างข้อมูลเฉพาะอ่านคุณสมบัติในไดเรกทอรีในหรือไดเรกทอรีในและไดเรกทอรีที่ต่ำกว่าทั้งหมด หวังว่าใครบางคนพบว่ามีประโยชน์สำหรับมัน แก้ตัวโค้ดใด ๆ ที่อาจ "แย่" เพราะฉันเพิ่งเริ่มเรียนรู้ไฟล์แบตช์ด้วยตนเอง
@ECHO off
:begin
ECHO Would you like to only remove read only attributes
ECHO from this director or from all the sub directores as
ECHO well?
ECHO.
ECHO [A] This directory only
ECHO [B] All directories - cascading
ECHO [C] Cancel
SET /P actionChoice="Option(A,B,C): "
ECHO.
IF "%actionChoice%" == "A" GOTO A
IF "%actionChoice%" == "B" GOTO B
IF "%actionChoice%" == "C" GOTO C
GOTO badChoice
:A
CLS
ECHO Are you sure you want to remove all read-only
ECHO attributes from this directory only?
ECHO.
ECHO Directory:
ECHO.
ECHO %CD%
ECHO.
SET /P continueChoice="Continue? (Y, N): "
IF "%continueChoice%" == "N" GOTO abort
ECHO Removing Read Only Attributes From Local Directory...
SET currectDirectory=%CD%
ECHO Current directory is: %currectDirectory%
FOR %%G IN (%currectDirectory%\*) DO (
ECHO %%G
ATTRIB -R "%%G"
)
GOTO end
:B
CLS
ECHO Are you sure you want to remove all read-only
ECHO attributes from this directory and all sub-directories?
ECHO.
ECHO Directory:
ECHO.
ECHO %CD%
ECHO.
SET /P continueChoice="Continue? (Y, N): "
IF "%continueChoice%" == "N" GOTO abort
ECHO Removing Read Only Attributes Cascading...
FOR /R %%f IN (*) DO (
ECHO %%f
ATTRIB -R "%%f"
)
GOTO end
:C
CLS
ECHO Cancel: no files have been changed
GOTO end
:badChoice
CLS
ECHO Unknown Option
ECHO.
ECHO.
ECHO.
GOTO begin
:abort
CLS
ECHO No files have been changed
ECHO.
ECHO.
ECHO.
GOTO begin
:end
ECHO Read only attributes removed
PAUSE
มีตัวเลือกมากมายที่นี่ แต่ไฟล์แบตช์นี้รองรับการวางโฟลเดอร์ / s และ / หรือไฟล์ / s ไปยังไฟล์แบตช์เอง
Read-only Off.bat
บันทึกรหัสด้านล่างนี้ไป
หมายเหตุสำหรับวิธีการที่บิตทำงานในโค้ด
@echo off
title ' %~nx0 ' by stephen147
color 5F
rem Place this inside a folder and run to remove the read-only attribute in the root folder and any folders or files within.
rem Or drop the folder/s and/or file/s to the batch file itself.
cd /d "%~dp0"
echo.
echo.Do you want to remove the read-only attributes inside this folder ? [ Ctrl + C to cancel ]
echo.
pause
echo.
echo.%cd%
attrib -s -d -r "%cd%\*.*"
attrib -s -d -r "%cd%"
rem This line supports dropping the folder/s and/or file/s to the batch file itself.
attrib -r "%*"
echo.
echo.Done
timeout /T 5
EXIT
attrib /S -R